Can you point out some good resources that you used to integrate Django with vue? I have a full stack Django website and have often thought about using some js library and speeding things up on the front end (and reduce bandwith usage) but my (admittedly lazy) experiment with react/angular haven't gone anywhere much.
Any tips on how to start with the integration? Do you use node to serve the front end or is it served by django?
Comments
Can you point out some good resources that you used to integrate Django with vue? I have a full stack Django website and have often thought about using some js library and speeding things up on the front end (and reduce bandwith usage) but my (admittedly lazy) experiment with react/angular haven't gone anywhere much.
Any tips on how to start with the integration? Do you use node to serve the front end or is it served by django?
I am using nap on the django side (json/mapping) http://django-nap.readthedocs.io/en/latest/index.html and axios https://github.com/mzabriskie/axios on the vuejs side (http) There are many other options and configurations. I settled on a modular architecture because I like to worry about one thing at a time :) You can also look at vue-resource (and others) and DRF https://www.django-rest-framework.org/ I am still learning vue as I go along but it is so well designed its a pleasure to learn as well