index.vue 445 B

123456789101112131415161718192021222324252627282930313233343536
  1. <template>
  2. <view class="content">
  3. <text class="title">旅游信息查询</text>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. title: '旅游信息查询'
  11. }
  12. },
  13. onLoad() {
  14. },
  15. methods: {
  16. }
  17. }
  18. </script>
  19. <style>
  20. .content {
  21. display: flex;
  22. flex-direction: column;
  23. align-items: center;
  24. justify-content: center;
  25. padding-top: 100rpx;
  26. }
  27. .title {
  28. font-size: 36rpx;
  29. color: #333;
  30. }
  31. </style>