1
0
mirror of https://github.com/troisjs/trois.git synced 2024-11-24 04:12:02 +08:00
trois/src/main.ts

8 lines
176 B
TypeScript
Raw Normal View History

2021-04-16 07:56:52 +08:00
import { createApp } from 'vue'
import { TroisJSVuePlugin } from './plugin'
import App from './App.vue'
const app = createApp(App)
app.use(TroisJSVuePlugin)
app.mount('#app')