refactor: prettier nc-gui v1

This commit is contained in:
Wing-Kam Wong
2022-07-06 18:19:04 +08:00
parent 9555b455e0
commit 8b863ca3d8
289 changed files with 19265 additions and 23785 deletions

View File

@@ -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