methods: {
getData: function (){
let vm = this;
axios.get('/web/api/groups/get.php')
.then(function (response) {
vm.groups // твои data.groups
console.log(response.data);
})
.catch(function (error) {
console.log(error);
});
}
},