blob: bf56fbcd7eb232ebb690d3746edc2c145c3609d9 [file] [log] [blame]
<script>
export default {
beforeCreate() {
const { params, query } = this.$route
const { path } = params
this.$router.replace({ path: '/' + path, query })
},
render: function(h) {
return h() // avoid warning message
}
}
</script>