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

<template>
<view>
<greetCmponents title="“威士忌鉴赏家”" :textList="textList" :path="greetP2" :btn="btn"/>
</view>
</template>
<script>
import greetCmponents from "../../components/home/greetComponents.vue"
export default {
data() {
return {
textList:[
'您的独到品味和对复杂风味的深刻理解展现了',
'您在威士忌世界中的非凡见解。',
'无论是高年份的经典之作,',
'还是精湛工艺的限量版,',
'每一杯威士忌在您手中都被赋予了更多的意义。',
'愿您在未来的品鉴之旅中继续探索更多顶级佳酿,',
'感受威士忌的独特魅力畅享每一滴带来的极致体验!'
],
greetP2:'/pages/index/greetP2',
btn:[
'下一页'
]
}
},
components:{
greetCmponents
},
methods: {
}
}
</script>
<style>
</style>