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 b6a8727c3e wip
2020-09-18 21:52:39 +02:00

9 lines
207 B
JavaScript

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