javascript - How to trigger a method at page load in vuejs? -


hy.. have quetion vuejs , quetion how trigger method @ page load tab..?
example:

<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 content  -->  <div id="content">  konten  </div>      </div>  

thanks

for vue >= 2.0 use mounted , previous version use ready.

vm=new vue({   el:"#app",   mounted:function(){         this.method1() //method1 execute @ pageload   },   methods:{         method1:function(){               /* logic */         }      }, }) 

Comments

Popular posts from this blog

Hatching array of circles in AutoCAD using c# -

ios - UITEXTFIELD InputView Uipicker not working in swift -

Python Pig Latin Translator -