mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2026-03-31 22:55:40 +00:00
10 lines
127 B
TypeScript
10 lines
127 B
TypeScript
import Vue from 'vue'
|
|
|
|
import App from './App.vue'
|
|
|
|
import './style.css'
|
|
|
|
new Vue({
|
|
render: (h) => h(App),
|
|
}).$mount('#app')
|