index.vue 309 B

12345678910111213141516171819202122232425
  1. <template>
  2. <view>
  3. </view>
  4. </template>
  5. <script>
  6. import { mapState, mapMutations } from 'vuex';
  7. export default {
  8. data() {
  9. return {}
  10. },
  11. onLoad() {
  12. this.initView();
  13. },
  14. methods: {
  15. ...mapMutations(['setSys']),
  16. initView: function() {
  17. }
  18. }
  19. }
  20. </script>
  21. <style lang="less">
  22. </style>