Just starting out with VueJS and I wanted to try using vue-bootstrap instead of the traditional bootstrap with jquery.
However, it seems like it's not working at all, even though there are no errors and all files are loaded properly.
base.html
{% load static %}
<!DOCTYPE html>
<html>
...
I followed the example from the vue-bootstrap documentation here:
index.html
{% extends 'base.html' %}
{% block content %}
<b-navbar toggleable="md" type="dark" variant="info">
...
Yet, it looks like this when rendered.
What could possibly be wrong with my setup?