mirror of
https://github.com/bartvdbraak/SlayerWeightCalculator.git
synced 2025-04-28 01:51:23 +00:00
12 lines
208 B
JavaScript
12 lines
208 B
JavaScript
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')
|