forked from AkkomaGang/akkoma-fe
recover autofocusing behavior
This commit is contained in:
parent
a9f33272a8
commit
0c8038d4f6
1 changed files with 7 additions and 0 deletions
|
@ -15,6 +15,13 @@ const PostStatusModal = {
|
||||||
return this.$store.state.postStatus.params
|
return this.$store.state.postStatus.params
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
watch: {
|
||||||
|
isOpen (val) {
|
||||||
|
if (val) {
|
||||||
|
this.$nextTick(() => this.$el.querySelector('textarea').focus())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
methods: {
|
methods: {
|
||||||
closeModal () {
|
closeModal () {
|
||||||
this.$store.dispatch('closePostStatusModal')
|
this.$store.dispatch('closePostStatusModal')
|
||||||
|
|
Loading…
Reference in a new issue