mirror of
https://gitee.com/dromara/go-view.git
synced 2025-04-24 22:40:11 +08:00
21 lines
562 B
Vue
21 lines
562 B
Vue
<template>
|
|
<collapse-item name="下拉配置" :expanded="true">
|
|
<setting-item-box name="默认值" :alone="true">
|
|
<n-select size="small" v-model:value="optionData.selectValue" :options="optionData.dataset" />
|
|
</setting-item-box>
|
|
</collapse-item>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { PropType } from 'vue'
|
|
import { CollapseItem, SettingItemBox } from '@/components/Pages/ChartItemSetting'
|
|
import { option } from './config'
|
|
|
|
defineProps({
|
|
optionData: {
|
|
type: Object as PropType<typeof option>,
|
|
required: true
|
|
}
|
|
})
|
|
</script>
|