I think I have to employ Bootstrap for the UI. I'm spinning my wheels trying to pick compatible colors--that's just a waste of time. I came across Bootswatch, which has a bunch of Bootstrap templates.
I like this one: https://bootswatch.com/cerulean/
This should be easy: https://bootstrap-vue.js.org/
First: npm install vue bootstrap-vue bootstrap
Then:
I like this one: https://bootswatch.com/cerulean/
This should be easy: https://bootstrap-vue.js.org/
First: npm install vue bootstrap-vue bootstrap
Then:
// app.js
import Vue from 'vue'
import BootstrapVue from 'bootstrap-vue'
Vue.use(BootstrapVue)
This is what Vue plugins look like (fontawesome does the same thing):
// This imports all the layout components such as <b-container>, <b-row>, <b-col>:
import { LayoutPlugin } from 'bootstrap-vue'
Vue.use(LayoutPlugin)
Comments
Post a Comment