CodingSecondaryVueBascal 2023-06-16 Source Edit History Creating a Vue Application 创建 Vue 应用 The application instance 应用实例12345import { createApp } from 'vue'const app = createApp({ /* root component options */}) The Root Component 根组件单文件式的引入: 12345import { createApp } from 'vue'// import the root component App from a single-file component.import App from './App.vue'const app = createApp(App) —https://vuejs.org/guide/essentials/application.html