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

38 lines
883 B

8 months ago
  1. <template>
  2. <view>
  3. <greetCmponents title="“威士忌鉴赏家”" :textList="textList" :path="greetP2" :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. '感受威士忌的独特魅力畅享每一滴带来的极致体验!'
  19. ],
  20. greetP2:'/pages/index/greetP2',
  21. btn:[
  22. '下一页'
  23. ]
  24. }
  25. },
  26. components:{
  27. greetCmponents
  28. },
  29. methods: {
  30. }
  31. }
  32. </script>
  33. <style>
  34. </style>