添加组件的三种方式:直接在 Vue函数的components属性中写:在components属性中注册主键的方式;导入js文件的方式
<body>
<div id='app'>
<div1>div1>
<my-div>my-div>
<box1>box1>
<box2>box2>
<div2>div2>
div>
<script>
let a1={
template:`
`
}
let a2={
template:`
`
}
script>
<script type="module">
// 导入文件形式
import div2 from "./div2.js"
new Vue({
el: '#app',
data: {},
methods: {},
computed: {},
components: {
div1: {
template: `
hello hello hello
`
},
MyDiv:{
template:`
6666 6666 6666
`
},
// 注册主键
box1:a1,
box2:a2,
div2,
}
})
script>