Vue + Django — Best of Both Frontends

Mike Hoolehan
Vue.js Developers
Published in
8 min readMay 26, 2019

Django and Vue both have unique front-end strengths. Django’s context-driven template views offer rapid development of pages directly from back-end model content. Vue’s modern reactive components provide powerful tools for building complex UIs within the rich Javascript ecosystem.

However, typical solutions to integrating Django and Vue forgo much of the strengths of one lieu of the other. For example, a common approach is to use Django Rest Framework as back-end and writing the entire front-end in Vue, making it difficult to utilize Django templates in places it could be expedient. A second approach is to use Vue within Django templates using browser <script> includes, but then lost is the ability to use Vue's Single File Components.

I recently started a project where I wanted to reserve the option to utilize both Django Templates and Vue, without compromising either. Most of my site’s pages were relatively static listings of back-end data with limited interactivity, exactly what Django excels at it in only a few lines of code. But I had small number of pages that contained areas of more complex data-driven interactivity, Vue’s forté. Could I find a way to rely on Django templates for my simpler pages while enriching parts of pages with Vue, all in a easy-to-manage configuration?

Could I have the best of both front-ends?

Of course! This article would have been spectacularly inessential otherwise.

Note: See also Part 2 of this article which introduces Vuex and additional information sharing techniques and part 3 of this series which introduces lazy loading of Vue components for increased performance.

If you’re integrating Django with Vue3, read instead the latest article Django + Vue + Vite: REST Not Required with many updates and improvements.

Django Webpack Loader and the Vue Multi-Page App

The key pieces in this solution are the django-webpack-loader Django app and Vue's ability to support Multi-Page Apps. By combining these tools, one can build a standard template-driven Django application that incorporates one or more individual webpack bundles in Django views. Each of these bundles is a separate Vue "page" that can be built using all the standard Vue/Javascript/Webpack tooling.

Adapting a Django project to use Vue

In the remaining sections of this article, I’ll illustrate the modification of a basic template-driven Django app to utilize Vue components authored as Single File Components. I omit the steps of building a simple Django site as it is well-documented already, but if you would like a simplified starting point, you can use this article’s example repo at tag example_start.

For the purposes of this article, I assume you have two working templates into which you would like to add separate Vue components.

In my example repo, these are templates/vue_app_01.html and templates/vue_app_02.html.

Adding a simple Vue project

We’ll start by embedding an entire simple Vue project in a sub-directory of our Django project. First, ensure the Vue CLI is installed.

sudo npm install -g @vue/cli

Then we’ll use the CLI to build the stock Vue starting project, placing it in thevue_frontend directory

vue create vue_frontend

You can simply accept all the defaults offered by the CLI. You should see the CLI report that the project was successfully created. We can verify our starter project is working by serving it:

cd vue_frontend
yarn serve

Point your browser to the URL reported to you (probably http://localhost:8080), and you should see the Vue sample app.

Convert the Vue Single Page App to Multi-Page App

The starter project has a single point of entry at index.js. We'll convert this project to use multiple "pages" as points of entry.

First off, we’ll need a helper package webpack-bundle-tracker to help us track the bundles created by these multiple pages. Add it to the project by running the following from your vue_frontend directory.

yarn add webpack-bundle-tracker@^0.4.3 --dev

Next we’ll reconfigure the Vue project. Create vue_fontend/vue.config.js with the contents:

Let’s explore this configuration.

Upfront we declare a list of our pages vue_app_01 and vue_app_02, which will become the names of our bundles, and define points of entry for each. Note that main.js came with our starter app, but we haven't build newhampshir.js yet. We will shortly.

The publicPath section defines how Django will locate our bundles. We have two variations which can be used, one for production and one for non-production. In production, we set the publicPath empty, as this signals to django-webpack-loader to fall back to Django's standard static finder behavior. However, in non-production mode we override this to point to our own webpack development server.

The outputDir defines where the production ready Javascript/CSS will be placed. This most likely should be one of your Django application's static file locations.

Next we optimize our build using the splitChunks plugin, configuring it to extract any vendor javascripts into a single shared bundle. This allows us to keep our individual component javascript files small and allow browsers to cache our common javascript while moving among pages.

By default, Vue constructs corresponding html files for our bundles, but we have no need for them since we’ll be serving our bundles from Django templates. By deleting the appropriate plugins from our config we can prevent these from being generated.

The BundleTracker plugin will create a file vue_frontend/webpack-stats.json that will describe the bundles produced by this build process. This file will be used eventually by django-webpack-loader to identify and serve our bundles. More on that later.

The __STATIC__ alias is a neat bit of trickery first described (I believe) by Alejandro Riera Mainar. This will allows us to reference paths to static files within our Vue component as

<img src="~__STATIC__/logo.png">

And, finally, configure a development server for use in non-production modes, allowing us to hot reload our Vue components during front-end development.

Now that Vue is configured, we need to create our components. These could be any Vue apps, but for this article I’ll just adapt the starter project. Let’s just convert the starter project’s main.js and App.vue into a second slightly different app.

cp ./src/main.js ./src/newhampshir.js
cp ./src/App.vue ./src/App02.vue

Next, use vim or your favorite inferior editor to update src/newhampshir.js to point to our new App02 component, or, if you have sed, simply run the following:

sed -i 's/App/App02/g' src/newhampshir.js

Likewise, make a simple change to the App02 component so we’ll be able to recognize it from our browser. Again use an editor or simply run:

sed -i 's/pp/pp02/g' src/App02.vue

Now our Vue front-end is ready. We can confirm everything builds correctly by issuing yarn build. You should see some results similar to:

⠏  Building for production...
File Size Gzipped
../django_vue_mpa/static/vue/js/chunk- 82.77 KiB 29.90 ../django_vue_mpa/static/vue/js/vue_ap 4.63 KiB 1.62 KiB
../django_vue_mpa/static/vue/js/vue_ap 4.63 KiB 1.63 ../django_vue_mpa/static/vue/css/vue_a 0.34 KiB 0.23 KiB
../django_vue_mpa/static/vue/css/vue_a 0.33 KiB 0.23
DONE Build complete. The ../django_vue_mpa/static/vue directory is ready to be deployed.

Configuring Django to use webpack bundles

Now that our Vue application is building bundles correctly, we need to instruct Django how to locate and render these. The django-webpack-loader project takes care of most of this for us. Add this package to your Django app, by adding the following line to your requirements.txt:

django-webpack-loader==0.6.0

then installing the new requirement:

pip install -r requirements.txt

In your Django settings file (e.g. settings.py) add webpack_loader to the list of INSTALLED_APPS.

Elsewhere in that same settings file, add the following lines:

This configuration points django-webpack-loader to the stats file we generate during our Vue build.

We’re almost there. The final step is to alter our templates to include our new Vue apps. Choose one of your existing Django template files (in my case vue_app_01.html) and add the following:

{% load render_bundle from webpack_loader %}

<div id="app">
<app></app>
</div>
{% render_bundle 'chunk-vendors' %}
{% render_bundle 'vue_app_01' %}

This code sets aside a container for our app, then includes all the necessary Javascript and CSS from our vendor bundle and our vue_app_01 bundle. Note you may mingle any existing Django template code among these additions.

Pick a second template and include the same content, except substituting the vue_app_02 bundle.

Running the App

To run our app in development mode, we’ll need to serve both Django’s dev server and the webpack development server. From the vue_frontend directory, run:

yarn serve

And, in a separate terminal in the Django root directory, run the Django development server, e.g.

./manage.py runserver

Point your browser to your Django app (e.g. http://localhost:8000) and check out the two pages you modified. You should see your templates, but now with each running a separate Vue components.

Inspecting the browser dev console, you can see that the Vue JS/CSS is being served from our webpack development server. Also, both components are sharing the same chunk-vendors.js bundle. Further, we can demonstrate that hot-reloading is working correctly by making an alteration to one of our components. Without requiring a reload, the updates should take effect directly in the browser.

When it’s time to deploy, or when we simply want to omit running our Vue dev server, we can build our Vue project in production mode. Cancel the yarn serve process if it's running and instead run yarn build. The optimized bundles will be built in and placed into our Django static file location, and webpack-stats.json will be updated to reflect this new configuration. Go back to your web browser, reload the page, and you'll see that the Vue JS/CSS bundles are now loaded from your standard static files location.

Conclusion

Combining Django templates and Vue doesn’t require you to compromise on the strengths of either. Using the techniques described in this article, you are free to leverage both whenever and wherever is appropriate in your project.

Additional Notes

The Vue components used in this example are very simple, but you are free to make them as complex as you wish, incorporating technologies like Vuex and Vuetify, third-party node modules, or additional webpack configurations. Just modify your Vue/Webpack configuration as with any standard Vue project.

Using this technique, you are not limited to a single Vue component per page. If you want to mount multiple components in separate containers on a single page, just mount each accordingly using a separate selector.

I don’t advocate any specific approach to production configuration. You may wish to commit a production webpack-stats.json, maintain two separate versions for dev/production, or incorporate the building of bundles and webpack-stats.json into your delivery process.

Acknowledgments

The terrific article Integrating Django and VueJs with Vue CLI 3 and Webpack Loader by Rodrigo Smaniotto taught me how to use django-webpack-loader to integrate a Vue Single Page App. Much of the django-webpack-loader configuration described in this article is based on his work.

Rodrigo’s and this article also make use of clever work from Django + webpack + Vue.js — setting up a new project that’s easy to develop and deploy (part 1) by Alejandro Riera Mainar.

Source

See the companion source django-vue-mpa. If you wish to quickly jumpstart your own project using the methods described in this article, check out the Vue+Django cookiecutter.

See Part 2 of this article which introduces Vuex and additional information sharing techniques.

--

--

Mike Hoolehan
Vue.js Developers

Software dev, camper, baseball player, tabletop gamer. A long way from Terre Haute.