go-viee-fetch-Demo/src/packages/components/Charts/HazardousChemicalsSpace/LineDropdownHaz/config.vue

27 lines
708 B
Vue
Raw Normal View History

<template>
<collapse-item name="信息" :expanded="true">
<setting-item-box name="场景ID" :alone="true">
<setting-item>
<n-input v-model:value="optionData.sceneId" type="textarea" size="small"></n-input>
</setting-item>
</setting-item-box>
</collapse-item>
</template>
<script setup lang="ts">
import { PropType } from 'vue'
import { option } from './config'
import { CollapseItem, SettingItemBox, SettingItem } from '@/components/Pages/ChartItemSetting'
import config from './config'
defineProps({
chartConfig: {
type: Object as PropType<config>,
required: true
},
optionData: {
type: Object as PropType<typeof option>,
required: true
}
})
</script>