1
0
mirror of https://github.com/troisjs/trois.git synced 2024-11-24 04:12:02 +08:00
trois/src/main.js
Kevin Levron c5faba8734 cleanup
2021-02-28 21:01:56 +01:00

8 lines
185 B
JavaScript

import { createApp } from 'vue';
import { TroisJSVuePlugin } from './plugin.js';
import App from './App.vue';
const app = createApp(App);
app.use(TroisJSVuePlugin);
app.mount('#app');