1
0
mirror of https://github.com/troisjs/trois.git synced 2024-11-24 12:22:03 +08:00
trois/src/main.ts
Kevin Levron d2006b1f2c wip
2021-04-16 01:56:52 +02:00

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')