8 lines
93 B
Vue
8 lines
93 B
Vue
<script>
|
|
export default {
|
|
mounted() {
|
|
this.$router.push({ path: "/" })
|
|
}
|
|
}
|
|
</script>
|