2

Is there any Vue.js tutorial that show you step by step how to build a full aplication with database interaction?
We are building a page with inventory features in Vue.js and would be nice to have a reference.

So far all the tutorials and articles I've seen shows only the classic "app" with some limited features.

Comments
  • 0
    Database interaction is backend job.
    Vue.js is only the view (Vue 😉) layer, you can choose anyway to interact with your backend and present the data using Vue.js

    I personally like axios, you can read about it and get it here - https://github.com/mzabriskie/axios
  • 0
    @j0shy Yes, I know that I will need another techbology for the backend, but I was asking if there is any tutorial with backend logic, database conection and Vue as the frontend of choice.
    Thanks for your answer, will look to your suggestion.
Add Comment