<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>app-component</title>
</head>
<body>
<ol>
<todo-item></todo-item>
</ol>
<script src="https://cdn.jsdelivr.net/npm/vue"></script>
<script>
//组件
Vue.component('todo-item', {
template: '<li>这是个待办项</li>'
});
new Vue({
el: 'todo-item'
});
</script>
</body>
</html>
new Vue({
el: 'todo-item'
});
这里必须要有的,官方文档也没有看到,没有这一段,不显示组件