mirror of
https://github.com/troisjs/trois.git
synced 2024-11-24 04:12:02 +08:00
8 lines
176 B
TypeScript
8 lines
176 B
TypeScript
|
import { createApp } from 'vue'
|
||
|
import { TroisJSVuePlugin } from './plugin'
|
||
|
import App from './App.vue'
|
||
|
|
||
|
const app = createApp(App)
|
||
|
app.use(TroisJSVuePlugin)
|
||
|
app.mount('#app')
|