123456789101112131415161718192021222324252627 |
- <template>
- <view class="container">
- <navbar></navbar>
- <view class="intro">首页</view>
- <text class="intro">详见:首页</text>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {}
- },
- methods: {}
- }
- </script>
- <style>
- .container {
- font-size: 14px;
- line-height: 24px;
- }
- .searchInput {
- width: 80%;
- margin: 0 auto;
- }
- </style>
|