new Vue({
data() {
return {
$ws: '',
$loading_:true,
$timesVisible:'', //弹窗倒计时是否开启
$times:'', //弹窗倒计时。。秒数
$patientTimes:'', //病人概览翻页时间。。秒数
$patientWaringLabel:'', //病人警示标识翻页时间。。秒数
};
},
router,
store,
render: h => h(App)
}).$mount('#app')
我在main.js下这么写的
但是在其他页面this.$root.$times打印是undefined是为什么
我在网上看说可以这么写 啊
你自定义的属性不能在前面加$符号的,
把你的$去掉,然后this.$root.times就可以了