django-vue-admin/dvadmin-ui/src/views/redirect.vue

13 lines
254 B
Vue
Executable File

<script>
export default {
created() {
const { params, query } = this.$route;
const { path } = params;
this.$router.replace({ path: "/" + path, query });
},
render: function(h) {
return h(); // avoid warning message
}
};
</script>