mirror of
https://github.com/koel/koel
synced 2024-12-20 01:23:16 +00:00
8 lines
202 B
TypeScript
8 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')
|