mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-05 22:26:46 +00:00
refactor: prettier nc-gui v1
This commit is contained in:
@@ -18,27 +18,26 @@ export default {
|
||||
name: 'TextField',
|
||||
props: {
|
||||
value: String,
|
||||
inputDetails: Object
|
||||
inputDetails: Object,
|
||||
},
|
||||
computed: {
|
||||
localState: {
|
||||
get() {
|
||||
return this.value
|
||||
return this.value;
|
||||
},
|
||||
set(val) {
|
||||
this.$emit('input', val)
|
||||
}
|
||||
this.$emit('input', val);
|
||||
},
|
||||
},
|
||||
parentListeners() {
|
||||
const $listeners = {}
|
||||
return $listeners
|
||||
}
|
||||
}
|
||||
}
|
||||
const $listeners = {};
|
||||
return $listeners;
|
||||
},
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
</style>
|
||||
<style scoped></style>
|
||||
<!--
|
||||
/**
|
||||
* @copyright Copyright (c) 2021, Xgene Cloud Ltd
|
||||
|
||||
Reference in New Issue
Block a user