This commit is contained in:
2021-04-02 23:36:20 +00:00
parent b2b5e9ce7b
commit 1c58bc5b8d
3 changed files with 34 additions and 20 deletions

View File

@@ -220,6 +220,14 @@ export default {
deep: true
}
},
computed: {
hasSelectedWoItem: function() {
if (this.selectedItemIndex != null) {
return true;
}
return false;
}
},
methods: {
canSave: function() {
return this.formState.valid && this.formState.dirty;