index.vue 482 B

123456789101112131415161718192021222324
  1. <template>
  2. <page-theme :theme="theme">
  3. <template>
  4. <view class="f-30 p-40 flex-dir-column flex-x-center">
  5. <view class="col-info-d t-c m-b-30">首页</view>
  6. </view>
  7. </template>
  8. </page-theme>
  9. </template>
  10. <script>
  11. import themeMixins from '@/pages/yuecai/mixins/themeMixins.js';
  12. export default {
  13. mixins: [themeMixins],
  14. data() {
  15. return {}
  16. },
  17. methods: {},
  18. onLoad(options) {},
  19. }
  20. </script>
  21. <style scoped lang="scss">
  22. </style>