$nextTick не понимаю и кажется он не работает
через 2 $nextTick
this.$nextTick().then( this.$nextTick(() => { this.$refs.yourRef // element should now be in the DOM. }) ) ну вот так ведь же должно работать?
да, если это в mounted
<portal to="modal"> <the-modal ref="baseModal" :sending="sending" :is-form="isForm" :textarea="textarea" /> </portal> mounted () { this.$nextTick().then( this.$nextTick(() => { console.log(this) }) ) }, вот так выглядит, но $refs в итоге пустые оказываются
Обсуждают сегодня