- <template>
- <div />
- </template>
- <script>
- import { mapGetters } from 'vuex'
- export default {
- computed: {
- ...mapGetters(['proxyState'])
- },
- created() {
- const path = this.proxyState ? '/club' : '/supplier'
- console.log(this.$store.getters)
- this.$router.push(path)
- }
- }
- </script>
|