index.vue 281 B

123456789101112131415
  1. <template>
  2. <div />
  3. </template>
  4. <script>
  5. import { mapGetters } from 'vuex'
  6. export default {
  7. computed: {
  8. ...mapGetters(['proxySwitch'])
  9. },
  10. created() {
  11. const path = this.proxySwitch ? '/club' : '/supplier'
  12. this.$router.replace(path)
  13. }
  14. }
  15. </script>