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
182 B
TypeScript
Raw Normal View History

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