Answers for "onload call method vuejs"

0

how to run method in method vue js on load

....
 methods:{
     getUnits: function() {...}
 },
 beforeMount(){
    this.getUnits()
 },
 ......
Posted by: Guest on February-10-2021
0

how to use the onload event n vue js

vm=new Vue({
  el:"#app",
  mounted:function(){
        this.method1() //method1 will execute at pageload
  },
  methods:{
        method1:function(){
              /* your logic */
        }
     },
})
Posted by: Guest on March-13-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language