added variable in modal add new

This commit is contained in:
Burak Civan 2022-09-28 11:41:06 +03:00
parent f4bdde5461
commit ba398cad7f

View File

@ -228,6 +228,7 @@ export default {
'#efef32'
],
min_date: false,
selected_card: null
}
},
@ -288,7 +289,13 @@ export default {
.catch(error => {
});
},
}
},
watch: {
'selected_card': function (newVal, oldVal) {
this.form.card_id = newVal;
},
},
})
});
}