This is a learning purpose crud project for students
const root = new Vue({
el: '#root',
data: {
users: []
},
methods: {
getAllUsers: function () {
axios.get('inc/data.php').then(function (response) {
root.users = response.data;
});
}
},
created: function () {
this.getAllUsers();
}
});