当我添加 computed()
而不是 mounted()
它会引发错误
export default {
components: {
MainLayout
},
mounted(){
var x = document.getElementById('homeTabPanes');
// x.style.background = "blue";
console.log("check the value of x", x);
}
}
原文由 Adarsha Jha 发布,翻译遵循 CC BY-SA 4.0 许可协议
computed 是一个包含返回数据的方法的对象, mounted 是实例挂载后执行的生命钩子,查看文档的链接它有很好的解释