Update style

This commit is contained in:
2021-08-29 21:40:19 +02:00
parent 1d5cc99877
commit cfed14b1c4
9 changed files with 173 additions and 14 deletions

View File

@@ -1,6 +1,8 @@
import Vue from 'vue'
import App from './App.vue'
import router from './router'
import store from './store'
import '../scss/default.scss'
import { library } from '@fortawesome/fontawesome-svg-core'
import { fas } from '@fortawesome/free-solid-svg-icons'
@@ -12,6 +14,7 @@ Vue.component('font-awesome-icon', FontAwesomeIcon)
Vue.config.productionTip = false
new Vue({
store,
router,
render: h => h(App)
}).$mount('#app')