作舟vue

追风的鸟 / 2023-05-26 / 原文

基础
根组件:每个vue应用都需要一个“根组件”
import { createApp } from 'vue'
const app = createApp({
/* 根组件选项 */
})