import { createApp } from 'vue'; import App from './views/hotspot/index.vue'; export const app = createApp(App); app.mount('#app');