12345678910111213141516171819202122 |
- <template>
- <view class="homePage">
- <u-navbar title="首页" @rightClick="rightClick" :autoBack="true"></u-navbar>
- <view>123</view>
- </view>
- </template>
- <script>
- import * as API_item from '@/api/item.js';
- export default {
- data() {
- return {
- }
- },
- methods: {
-
- }
- }
- </script>
- <style lang="scss" scoped>
- @import 'home.scss';
- </style>
|