| 123456789101112131415161718192021222324 |
- <template>
- <page-theme :theme="theme">
- <template>
- <view class="f-30 p-40 flex-dir-column flex-x-center">
- <view class="col-info-d t-c m-b-30">首页</view>
- </view>
- </template>
- </page-theme>
- </template>
- <script>
- import themeMixins from '@/pages/yuecai/mixins/themeMixins.js';
- export default {
- mixins: [themeMixins],
- data() {
- return {}
- },
- methods: {},
- onLoad(options) {},
- }
- </script>
- <style scoped lang="scss">
- </style>
|