如何利用localStorage让弹框只在页面出现一次

引入组件

脚本
import CreatePosterRemind from ‘@/components/createPosterRemind’
data () {
return {
isShowYes: true,
}
}
mounted: function () {
this.alert()
},
alert () {
if (!localStorage.getItem(‘isShowYes’)) {
this.isShowYes = true
localStorage.setItem(‘isShowYes’, ‘true’)
} else {
this.isShowYes = false
}
},

猜你喜欢

转载自blog.csdn.net/weixin_43831302/article/details/89238281