1234567891011121314151617181920212223 |
- <script setup lang="ts" name='XcElOption'>
- import {defineProps} from 'vue'
- const {data} = defineProps({
- data: Array<{
- code: string,
- name: string
- }>
- })
- </script>
- <template>
- <el-option v-for="item in data"
- :key="item.code"
- :value="item.code"
- :label="item.name"/>
- </template>
- <style scoped lang="scss">
- </style>
|