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.
 
 
 
 
 

20 lines
472 B

<template>
<div>
<p>如果未登录会跳转到登录页如果已登录则弹出用户信息</p>
<button @click="user">点我</button>
</div>
</template>
<script>
export default {
methods: {
user() {
if (this.$store.getters['token/isLogin']) {
alert('token信息:' + this.$store.state.token.token)
} else {
this.$toLogin()
}
}
}
}
</script>