老师,请问
怎么理解根组件和子组件?我看网上说new Vue是根组件,但是通过我这个代码,我创建的app算不算根组件?还是说component是根组件??下面两个hello和world都是子组件吧?
这边感念有点迷糊,还请老师讲的详细一点,谢谢老师!
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>hello world</title>
<script src="https://unpkg.com/vue@next"></script>
<style>
.align-center {
text-align: center;
}
</style>
</head>
<body>
<div id="app"></div>
</body>
<script>
const app = Vue.createApp({
template: `<div><hello /><world /></div>`,
});
app.component("hello", {
template: `<div>hello</div>`,
});
app.component("world", {
template: `<div>world</div>`,
});
const vm = app.mount("#app");
</script>
</html>
11
收起
正在回答 回答被采纳积分+1
3回答
4.Vue与React高级框架开发
- 参与学习 人
- 提交作业 239 份
- 解答问题 10739 个
本阶段带你深入前端开发的肌理,通过ES6基础知识和前端主流高级框架的学习,助你快速构建企业级移动webAPP应用,进入职场的终极battle
了解课程
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星