index.vue
319 Bytes
<template>
<div>
<span @click="jumpLogin">跳转登录页面</span>
<FooterBottom />
</div>
</template>
<script>
export default {
name: 'Home',
components: {
},
data() {
return {}
},
methods: {
jumpLogin() {
this.$router.push({
name: 'Login'
})
}
}
}
</script>