index.vue 371 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <view class="container">
  3. <navbar></navbar>
  4. <view class="intro">首页</view>
  5. <text class="intro">详见:首页</text>
  6. </view>
  7. </template>
  8. <script>
  9. export default {
  10. data() {
  11. return {}
  12. },
  13. methods: {}
  14. }
  15. </script>
  16. <style>
  17. .container {
  18. font-size: 14px;
  19. line-height: 24px;
  20. }
  21. .searchInput {
  22. width: 80%;
  23. margin: 0 auto;
  24. }
  25. </style>