如何在页面加载时触发选项卡之类的方法?
例如:
<div id='wraper'>
<!-- div id menu not load -->
<div id="menu">
<a href='#'>test</a>
<a href='#'>test</a>
<a href='#'>test</a>
</div>
<!-- load this content -->
<div id="content">
konten
</div>
</div>
谢谢
如何在页面加载时触发选项卡之类的方法?
例如:
<div id='wraper'>
<!-- div id menu not load -->
<div id="menu">
<a href='#'>test</a>
<a href='#'>test</a>
<a href='#'>test</a>
</div>
<!-- load this content -->
<div id="content">
konten
</div>
</div>
谢谢
对于vue> = 2.0,请使用mounted
,对于早期版本,请使用ready
。
vm=new Vue({
el:"#app",
mounted:function(){
this.method1() //method1 will execute at pageload
},
methods:{
method1:function(){
/* your logic */
}
},
})
此语法工作正常: