0
JS我開始追趕上它,但我被困在組件會感謝你的幫助的感謝Vue.js組件問題
//這裏是我的js
Vue.component('thatsCool', {
template: document.querySelector('#myOwnTemplate'),
data: function() {
return {
helloWorld: 'thats cool',
};
},
});
new Vue({
el: 'body',
});
//和這是我的HTML
<! DOCTYPE html>
<html>
<head>
<title>playing with Vue components</title>
</head>
<body>
<thatsCool></thatsCool>
<script id="myOwnTemplate" type="x/template">
<p v-text="helloWorld"></p>
</script>
<script src="vue.js"></script>
<script src="component.js"></script>
</body>
</html>
感謝百萬人,突破問題就像你說的組件名稱套管有其嚴格的規則,甚至是 - 酷大寫c不會工作 –