yarn add, import, use buefy

This commit is contained in:
Bart van der Braak 2020-01-31 01:24:51 +01:00
parent aea34d3656
commit cdc46021dc
3 changed files with 24 additions and 7 deletions

View file

@ -1,8 +1,12 @@
import Vue from 'vue'
import Buefy from 'buefy'
import 'buefy/dist/buefy.css'
import App from './App.vue'
Vue.config.productionTip = false
Vue.use(Buefy)
new Vue({
render: h => h(App),
}).$mount('#app')