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

9 lines
207 B
JavaScript
Raw Normal View History

2020-09-14 22:57:11 +08:00
import { createApp } from 'vue';
2020-09-19 03:52:39 +08:00
import { TroisJSVuePlugin } from './plugin.js';
2020-09-14 22:57:11 +08:00
import App from './App.vue';
import './index.css';
const app = createApp(App);
2020-09-19 03:52:39 +08:00
app.use(TroisJSVuePlugin);
2020-09-14 22:57:11 +08:00
app.mount('#app');