mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-30 06:16:46 +00:00
refactor(gui): update eslint rules
Signed-off-by: Pranav C <61551451+pranavxc@users.noreply.github.com>
This commit is contained in:
@@ -23,22 +23,22 @@ export default {
|
||||
},
|
||||
computed: {
|
||||
localState: {
|
||||
get () {
|
||||
get() {
|
||||
return this.value
|
||||
},
|
||||
set (val) {
|
||||
set(val) {
|
||||
this.$emit('input', val)
|
||||
}
|
||||
},
|
||||
parentListeners () {
|
||||
parentListeners() {
|
||||
const $listeners = {}
|
||||
return $listeners
|
||||
}
|
||||
},
|
||||
created () {
|
||||
created() {
|
||||
this.localState = this.value
|
||||
},
|
||||
mounted () {
|
||||
mounted() {
|
||||
this.$refs.textarea.focus()
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user