gpt4 book ai didi

javascript - 如何在 vuejs 中的页面加载时触发方法?

转载 作者:可可西里 更新时间:2023-11-01 01:45:10 25 4
gpt4 key购买 nike

如何在标签页加载时触发方法?
例如:

<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 */
}
},
})

关于javascript - 如何在 vuejs 中的页面加载时触发方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35064845/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com