百富门答题小程序
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.

31 lines
550 B

8 months ago
  1. <template>
  2. <view>
  3. <greetCmponents :textList="textList" :btn="btn"/>
  4. </view>
  5. </template>
  6. <script>
  7. import greetCmponents from "../../components/home/greetComponents.vue"
  8. export default {
  9. data() {
  10. return {
  11. textList: [
  12. '感谢您分享宝贵的评价!',
  13. '您的反馈对我们非常重要。',
  14. '祝愿您每一天都充满精彩与愉悦,生活美满,',
  15. '尽享每一杯威士忌的独特魅力!'
  16. ],
  17. btn: []
  18. }
  19. },
  20. components: {
  21. greetCmponents
  22. },
  23. methods: {
  24. }
  25. }
  26. </script>
  27. <style>
  28. </style>