<script>
import { nextTick as nt } from 'vue';
export default {
async mounted() {
nt.then(callback);
Vue.nextTick.then(callback);
this.$nextTick.then(callback);
await nt;
await Vue.nextTick;
await this.$nextTick;
}
}
</script>
Fix with