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

8 lines
182 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')