mirror of
https://github.com/koel/koel
synced 2025-03-09 01:27:15 +00:00
9 lines
202 B
TypeScript
9 lines
202 B
TypeScript
|
/// <reference path="../types.d.ts"/>
|
||
|
import './static-loader'
|
||
|
import { http } from '@/services'
|
||
|
import App from './app.vue'
|
||
|
import { createApp } from 'vue'
|
||
|
|
||
|
// http.init()
|
||
|
createApp(App).mount('#app')
|