Jak uruchomić metodę w metodzie vue js na obciążeniu

 ....
 methods:{
     getUnits: function() {...}
 },
 beforeMount(){
    this.getUnits()
 },
 ......
Lucky Lynx