mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2026-04-01 23:25:31 +00:00
9 lines
129 B
TypeScript
9 lines
129 B
TypeScript
import { createApp } from 'vue'
|
|
|
|
import App from './App.vue'
|
|
|
|
import './style.css'
|
|
|
|
const app = createApp(App)
|
|
app.mount('#app')
|