// 从vue核心库引出创建App的方法 import { createApp } from 'vue' // 将跟页面进行引入 import App from './App.vue' createApp(App).mount('#app')