index.vue 444 Bytes
<template>
  <other-info-list per-type="2" :type-arr="typeArr" />
</template>

<script setup >
import { ref, defineOptions } from 'vue'
import OtherInfoList from '@/views/storehouse/otherInfoList'

defineOptions({
  name: 'Coach_Coach'
})

const typeArr = ref([
  { label: '初级', value: '1' },
  { label: '中级', value: '2' },
  { label: '高级', value: '3' },
  { label: '国家级', value: '4' }
])

</script>

<style scoped>

</style>