vue でまとめてwatchする
created() {
this.$watch(
() => [this.data1, this.data2],
(newValue, oldValue) => {
if (JSON.stringify(newValue) !== JSON.stringify(oldValue)) {
//何かしら変更があった場合
}
}
);
}
created() {
this.$watch(
() => [this.data1, this.data2],
(newValue, oldValue) => {
if (JSON.stringify(newValue) !== JSON.stringify(oldValue)) {
//何かしら変更があった場合
}
}
);
}