19 lines
563 B
JavaScript
19 lines
563 B
JavaScript
import { createApp } from 'vue'
|
|
import App from './App.vue'
|
|
import router from './router'
|
|
import { library } from '@fortawesome/fontawesome-svg-core'
|
|
import { faEdit, faEye, faEyeSlash, faTrash, faTimes } from '@fortawesome/free-solid-svg-icons'
|
|
import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome'
|
|
import store from "./store/store.js"
|
|
|
|
library.add(faEdit, faEye, faEyeSlash, faTrash, faTimes)
|
|
|
|
|
|
//Vue.config.productionTip = false
|
|
|
|
createApp(App)
|
|
.use(router)
|
|
.use(store)
|
|
.component('font-awesome-icon', FontAwesomeIcon)
|
|
.mount('#app');
|