? у меня пишет что refs.items нету .
var res = await axios.get();
this.items = res.data;
this.$nextTick(function() {
let i = this.$refs.items[2]
i.$el.scrollIntoView();
});
чем отличается function () от () => {}
Проверь что выводит this внутри функции nextTick
mounted() this.loadData() updated() this.$nextTick(() => this.doTheScroll())
нашел проблему Работает: import HelloWorld from '@/components/HelloWorld.vue'; components: { HelloWorld, }, Не работает (у меня такой вариант был): Vue.component('HelloWorld', () => import('./components/HelloWorld'));
Обсуждают сегодня