管理系统PC前端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dm-manage-web/src/views/redirect.vue

13 lines
255 B

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