yarn config set ignore-engines true
import { createApp } from 'vue'
import App from './App.vue'
import '/index.css'
createApp(App).mount('#app')
第一行引入了createAPP,创建app实例的重要阐述
第二行引入app组件
第三行引入css
第4行 createApp接受了app组件,并挂载到了div.idapp上
<template>
<img alt="Vue logo" src="./assets/logo.png" />
<HelloWorld msg="Hello Vue 3.0 + Vite" />
</template>
vue3支持多标签
createApp(组件)接受一个组件
newVue({template,render})接受一个对象
const router = createRouter({
history:history,
routers:[{
path:'/',component:xiang
}]
})
当访问根路径时候,渲染的是xiang组件
网友评论