11 lines
142 B
Vue
11 lines
142 B
Vue
<template>
|
|
<p>Redirecting...</p>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
created() {
|
|
this.$router.push('/login');
|
|
}
|
|
};
|
|
</script>
|