mirror of
https://github.com/troisjs/trois.git
synced 2024-11-24 12:22:03 +08:00
7 lines
132 B
JavaScript
7 lines
132 B
JavaScript
|
import { createApp } from 'vue';
|
||
|
import App from './App.vue';
|
||
|
import './index.css';
|
||
|
|
||
|
const app = createApp(App);
|
||
|
app.mount('#app');
|