百富门答题小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
648 B

  1. <template>
  2. <view class="home">
  3. <view class="content" style="padding-top: 30vh;">
  4. <span v-for="(item,index) in textList1" :key="index" class="content-text" style="font-size: 28rpx;">
  5. {{item}}
  6. </span>
  7. </view>
  8. </view>
  9. </template>
  10. <script>
  11. export default {
  12. data() {
  13. return {
  14. textList1: [
  15. '感谢您分享宝贵的评价!',
  16. '您的反馈对我们非常重要。',
  17. '祝愿您每一天都充满精彩与愉悦,生活美满,',
  18. '尽享每一杯威士忌的独特魅力!'
  19. ],
  20. }
  21. },
  22. methods: {
  23. }
  24. }
  25. </script>
  26. <style lang="scss" scoped>
  27. .query {
  28. position: relative;
  29. top: 30vh;
  30. }
  31. </style>