import { createApp } from 'vue'; import App from './popup-window.vue'; // 创建Vue应用实例 const app = createApp(App); // 挂载应用到DOM元素#app上 app.mount('#app');