index.vue
406 Bytes
<template>
<other-info-list per-type="8" :type-arr="typeArr" />
</template>
<script setup>
import { defineOptions, ref } from 'vue'
import OtherInfoList from '@/views/storehouse/otherInfoList'
defineOptions({
name: 'Coach_Lecturer'
})
const typeArr = ref([
{ label: '中国跆协培训讲师', value: '1' },
{ label: '国跆协培训讲师', value: '2' }
])
</script>
<style scoped>
</style>