HelloWorld.vue 737 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <script setup>
  2. import { ref, reactive } from 'vue'
  3. const count = ref(0)
  4. const data = reactive({
  5. platform: [{
  6. value: 'vlog',
  7. label: '票圈vlog',
  8. }, {
  9. value: 'video',
  10. label: '票圈video'
  11. }, {
  12. value: 'shortVideo',
  13. label: '票圈短视频'
  14. }, {
  15. value: 'longVideo',
  16. label: '票圈长视频'
  17. }, {
  18. value: 'iMove',
  19. label: '票圈爱电影'
  20. }, {
  21. value: 'iFunny',
  22. label: '票圈最搞笑'
  23. }, {
  24. value: 'amazed',
  25. label: '票圈最惊奇'
  26. }],
  27. Env: [{
  28. value: 'test',
  29. label: '测试'
  30. }, {
  31. value: 'pre',
  32. label: '预发布'
  33. }, {
  34. value: 'prod',
  35. label: '线上'
  36. }]
  37. })
  38. </script>
  39. <template></template>
  40. <style scoped>
  41. a {
  42. color: #42b983;
  43. }
  44. </style>