美文网首页
vue3的环境搭建

vue3的环境搭建

作者: 饥人谷_小霾 | 来源:发表于2020-10-11 16:00 被阅读0次

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组件

相关文章

网友评论

      本文标题:vue3的环境搭建

      本文链接:https://www.haomeiwen.com/subject/fowfpktx.html