12345678910111213141516171819202122232425 |
- <template>
- <view>
-
- </view>
- </template>
- <script>
- import { mapState, mapMutations } from 'vuex';
- export default {
- data() {
- return {}
- },
- onLoad() {
- this.initView();
- },
- methods: {
- ...mapMutations(['setSys']),
- initView: function() {
- }
- }
- }
- </script>
- <style lang="less">
- </style>
|