|
|
- <template>
- <view class="home">
- <view class="content" style="padding-top: 30vh;">
- <span v-for="(item,index) in textList1" :key="index" class="content-text" style="font-size: 28rpx;">
- {{item}}
- </span>
- </view>
- </view>
- </template>
-
- <script>
- export default {
- data() {
- return {
- textList1: [
- '感谢您分享宝贵的评价!',
- '您的反馈对我们非常重要。',
- '祝愿您每一天都充满精彩与愉悦,生活美满,',
- '尽享每一杯威士忌的独特魅力!'
- ],
- }
- },
- methods: {
-
- }
- }
- </script>
-
- <style lang="scss" scoped>
- .query {
- position: relative;
- top: 30vh;
- }
- </style>
|