<template>
<TsDropdown v-model="dropValue" :nowrap="true" width="320" :list="exampleData.expandData[0].dropList">
<template #icon>
<BussinessIcon name="timeszicon-xiasanjiao" font-size="16" />
</template>
</TsDropdown>
</template>
<script setup lang="ts">
import { ref } from 'vue';
const dropValue = ref(1);
const dropList = [
{ label: '选项1', value: 1 },
{ label: '选项2', value: 2 },
{ label: '选项3', value: 3 },
]
</script>