mirror of
https://github.com/m1k1o/neko.git
synced 2024-07-24 14:40:50 +12:00
13 lines
241 B
TypeScript
13 lines
241 B
TypeScript
|
import './assets/styles/main.scss'
|
||
|
|
||
|
import Vue from 'vue'
|
||
|
import Notifications from 'vue-notification'
|
||
|
import App from './App.vue'
|
||
|
|
||
|
Vue.config.productionTip = false
|
||
|
Vue.use(Notifications)
|
||
|
|
||
|
new Vue({
|
||
|
render: h => h(App),
|
||
|
}).$mount('#neko')
|