Sodagraph's picture
스페이스 이동
eda02a7
raw
history blame
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')