vue.js学习笔记(一)
vue.js学习笔记(一)最近在通过vue.js的官网学习其框架,我将会把我在学习过程中遇到的错误和自己的收货分享出来,希望与大家共勉。
·
最近在通过vue.js的官网学习其框架,我将会把我在学习过程中遇到的错误和自己的收货分享出来,希望与大家共勉。
html代码:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>vue.js</title>
</head>
<body>
<div id="app">
<ul>
<todo-item v-for="item in groceryList" v-bind:todo="item"></todo-item>
</ul>
</div>
<script src="https://unpkg.com/vue/dist/vue.js"></script>
<script src="testvue.js"></script>
</body>
</html>
js代码
window.onload = function() {
Vue.component("todo-item", {
props: ["todo"],
template: "<li>{{todo.text}}</li>"
})
var app = new Vue({
el: '#app',
data: {
groceryList: [
{text: "a"},
{text: "b"},
{text: "c"}
]
}
});
}
在做这个例子的过程,发现我的代码老是报错,具体为:
Unknown custom element: - did you register the component correctly? For recursive components, make sure to provide the “name” option. (found in root instance)
这个错误出现的原因是我在测试的过程中先新建了Vue,然后注册组件,即先 new Vue,之后 Vue.component。反过来错误即可解决。
更多推荐
已为社区贡献4条内容
所有评论(0)