Browse Source

fix[redirect]: fix redirect bug in vue-devtool again

pull/2072/head
Pan 6 years ago
parent
commit
45edf7b048
  1. 3
      src/views/redirect/index.vue

3
src/views/redirect/index.vue

@ -1,10 +1,9 @@
<script>
export default {
beforeCreate() {
created() {
const { params, query } = this.$route
const { path } = params
this.$router.replace({ path: '/' + path, query })
return
},
render: function(h) {
return h() // avoid warning message

Loading…
Cancel
Save