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.
21 lines
472 B
21 lines
472 B
|
6 years ago
|
<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>
|