home.vue 355 B

12345678910111213141516171819202122
  1. <template>
  2. <view class="homePage">
  3. <u-navbar title="首页" @rightClick="rightClick" :autoBack="true"></u-navbar>
  4. <view>123</view>
  5. </view>
  6. </template>
  7. <script>
  8. import * as API_item from '@/api/item.js';
  9. export default {
  10. data() {
  11. return {
  12. }
  13. },
  14. methods: {
  15. }
  16. }
  17. </script>
  18. <style lang="scss" scoped>
  19. @import 'home.scss';
  20. </style>