import { createApp } from 'vue'; import App from './App.vue'; import router from './router'; const el = document.getElementById('comm-app'); if (el) { createApp(App).use(router).mount(el); }