Sodagraph's picture
스페이스 이동
eda02a7
Raw
History Blame Contribute Delete
168 Bytes
import { createApp } from 'vue'
import App from './App.vue'
import api from './api'
const app = createApp(App)
app.config.globalProperties.$api = api
app.mount('#app')