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

37 lines
744 B

<template>
<view>
<greetCmponents title="“威士忌玩家”" :textList="textList" :path="greetP5" :btn="btn"/>
</view>
</template>
<script>
import greetCmponents from "../../components/home/greetComponents.vue"
export default {
data() {
return {
textList:[
'您对威士忌的热爱不仅体现在酒杯中,',
'更体现在与朋友分享的每一个欢乐时刻。',
'愿您在每一次聚会中,',
'都能用您的创意和激情,',
'让威士忌成为欢聚的中心,',
'点燃无数难忘的瞬间。'
],
greetP5:'/pages/index/appointment',
btn:[
'下一页'
]
}
},
components:{
greetCmponents
},
methods: {
}
}
</script>
<style>
</style>