2
私はそれがマウントされているときにトリガーするのを見たいと思っている以下のvueコンポーネントを持っています。それ、どうやったら出来るの?Vueトリガー・ウォッチ・オン・マウント
Vue.component('check-mark', {
name: 'check-mark',
template: `
<input :value="value">
`,
props: {
value: {
type: String,
required: true,
},
},
mounted: async function() {
//trigger this.value watch() here
},
watch: {
value: function (value) {
if (value == 'Y') {
this.class = 'checked';
} else {
this.class = 'unchecked';
}
},
},
});
https://stackoverflow.com/questions/45354027/vue-js-how-to-fire-a-watcher-function-when-a-component-initializes –