Files
sist_web/src/views/other.vue
2022-09-25 16:49:23 +08:00

14 lines
266 B
Vue

<template>
</template>
<script>
export default {
created() {
console.log("dsdsdd")
let path = this.$route.path;
if (-1==path.indexOf("attached")||path==="/"){
this.$router.push("/home?lang="+sessionStorage.getItem("lang"));
}
}
}
</script>