Skip to content

haq47/vue-js-crud

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Vue JS Crud with axios

This is a learning purpose crud project for students

Vue Instance

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();
  }
});

About

This is Vue crud apps with Axios

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages