登录后,我在store和localStorage中设置了"authenticated" = true
变量。
如何检查每一页的authenticated==true
并显示不同的菜单元素?
(我正在使用ssr)
谢谢
最佳答案
authenticated
。 computed() {authenticated () => { return this.$store.state.authenticated }}
<v-if>
一起使用。 祝好运!
登录后,我在store和localStorage中设置了"authenticated" = true
变量。
如何检查每一页的authenticated==true
并显示不同的菜单元素?
(我正在使用ssr)
谢谢
最佳答案
authenticated
。 computed() {authenticated () => { return this.$store.state.authenticated }}
<v-if>
一起使用。