project nearly finished. TODO Next : Project page and refine some text
This commit is contained in:
20
src/main.js
20
src/main.js
@@ -1,4 +1,22 @@
|
||||
import { createApp } from 'vue'
|
||||
import './reset.css'
|
||||
import App from './App.vue'
|
||||
import router from './router'
|
||||
import { createPinia } from 'pinia'
|
||||
|
||||
createApp(App).mount('#app')
|
||||
import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome'
|
||||
import { library } from '@fortawesome/fontawesome-svg-core'
|
||||
import { faCircleXmark } from '@fortawesome/free-regular-svg-icons'
|
||||
|
||||
library.add( faCircleXmark )
|
||||
|
||||
|
||||
const pinia = createPinia()
|
||||
|
||||
|
||||
|
||||
createApp(App)
|
||||
.use(router)
|
||||
.use(pinia)
|
||||
.component('font-awesome-icon', FontAwesomeIcon)
|
||||
.mount('#app')
|
||||
|
||||
Reference in New Issue
Block a user