| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 | <script setup>import { ref, reactive } from 'vue'const count = ref(0)const data = reactive({  platform: [{    value: 'vlog',    label: '票圈vlog',  }, {    value: 'video',    label: '票圈video'  }, {    value: 'shortVideo',    label: '票圈短视频'  }, {    value: 'longVideo',    label: '票圈长视频'  }, {    value: 'iMove',    label: '票圈爱电影'  }, {    value: 'iFunny',    label: '票圈最搞笑'  }, {    value: 'amazed',    label: '票圈最惊奇'  }],  Env: [{    value: 'test',    label: '测试'  }, {    value: 'pre',    label: '预发布'  }, {    value: 'prod',    label: '线上'  }]})</script><template></template><style scoped>a {  color: #42b983;}</style>
 |