Add sample for vite + vue

This commit is contained in:
Dennis Chen 2025-09-17 14:30:28 +08:00
parent 1b33d5dced
commit 668420adc0
11 changed files with 1268 additions and 0 deletions

View file

@ -0,0 +1,5 @@
import { createApp } from 'vue';
import Editor from './components/Editor.vue';
import './userWorker';
createApp(Editor).mount('#app');