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

36 lines
690 B

8 months ago
  1. <template>
  2. <view>
  3. <greetCmponents title="“威士忌探秘者”" :textList="textList" :path="greetP3" :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. ],
  18. greetP3:'/pages/index/greetP3',
  19. btn:[
  20. '下一页'
  21. ]
  22. }
  23. },
  24. components:{
  25. greetCmponents
  26. },
  27. methods: {
  28. }
  29. }
  30. </script>
  31. <style>
  32. </style>