ネストされたコンポーネントをテストするための基本的なvue js 2の基本的な例を書きました。vue js 2ネストされたコンポーネントのインスタンスに "value"プロパティまたはメソッドが定義されていません
以下はコンポーネントとテンプレート構造です。
Vue.component('form-com', {
template: '#form',
props: ['value'],
methods: {
onInput: function (event) {
this.$emit('input', event.target.value);
}
}
});
Vue.component('message-com', {
template: '#message',
data: function() {
return {
msg: 'Hello'
}
},
props: ['user']
});
Vue.component('welcome-com', {
template: '#welcome',
data: function() {
return {
user: 'ahmad'
}
}
});
new Vue({
el: '#container'
})
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.3.4/vue.js"></script>
<!--Form Template-->
<template id="form">
<div>
<div class="form-control">
<label>Enter Your Name:</label>
<input type="text" v-bind:value="value" :input="onInput">
</div>
</div>
</template>
<!--Hello Message Template-->
<template id="message">
<div>
<h3>{{msg}} {{user}}</h3>
</div>
</template>
<template id="welcome">
<div>
<form-com :value="value"></form-com>
<br>
<message-com :user="user"></message-com>
</div>
</template>
<div id="container">
<welcome-com></welcome-com>
</div>
しかし、ブラウザでアプリケーションを実行すると、このエラーが表示されます。
[Vue warn]: Property or method "value" is not defined on the instance but referenced during render. Make sure to declare reactive data properties in the data option.
found in
---> <WelcomeCom>
<Root>
問題は何ですか?
更新:
私はちょうどLearning Vue.js 2の章のいずれかからthis Fiddleを書き換えます。私はいくつかのパラメータとコンポーネント名とテンプレート名の名前を変更します。しかし私がメインのフィドルを自分のコードにコピーすると、すべてのことがうまくいった。あなたのコンポーネント「歓迎コム」value
オブジェクトに
問題は解決され、そのエラーは削除されました。しかし、今入力{msg}にいくつかの文字を入力すると変更されません。何が問題なのですか? –
'msg'が変更されるはずはないと宣言しました。多分あなたが達成しようとしているものと別の質問を開きます。 –
私は前のコメントに誤りがあります。私は{ユーザー} paramを意味します。私は入力テキストを介して 'user'を変更したい –