mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-10-09 13:28:53 +08:00
17 lines
274 B
JavaScript
17 lines
274 B
JavaScript
export default {
|
|
props: {
|
|
field: Object,
|
|
marked_as_na: Boolean,
|
|
disabled: Boolean
|
|
},
|
|
watch: {
|
|
validValue() {
|
|
this.$emit('validChanged');
|
|
}
|
|
},
|
|
computed: {
|
|
fieldDisabled() {
|
|
return this.marked_as_na || this.disabled;
|
|
}
|
|
}
|
|
};
|