Move folder
This commit is contained in:
40
src/main.ts
Normal file
40
src/main.ts
Normal file
@ -0,0 +1,40 @@
|
||||
import { createApp } from 'vue'
|
||||
import App from './App.vue'
|
||||
import router from './router'
|
||||
|
||||
import './assets/index.css'
|
||||
|
||||
import 'video.js/dist/video-js.css'
|
||||
|
||||
const app = createApp(App)
|
||||
|
||||
import { OhVueIcon, addIcons } from 'oh-vue-icons'
|
||||
import {
|
||||
IoSearchOutline,
|
||||
IoLink,
|
||||
FaCircleNotch,
|
||||
BiTwitter,
|
||||
BiInstagram,
|
||||
BiDiscord,
|
||||
BiYoutube,
|
||||
BiTiktok,
|
||||
BiHeartFill,
|
||||
IoPerson
|
||||
} from 'oh-vue-icons/icons'
|
||||
|
||||
addIcons(
|
||||
IoSearchOutline,
|
||||
IoLink,
|
||||
FaCircleNotch,
|
||||
BiTwitter,
|
||||
BiInstagram,
|
||||
BiDiscord,
|
||||
BiYoutube,
|
||||
BiTiktok,
|
||||
BiHeartFill,
|
||||
IoPerson
|
||||
)
|
||||
|
||||
app.component('v-icon', OhVueIcon)
|
||||
app.use(router)
|
||||
app.mount('#app')
|
Reference in New Issue
Block a user