the el
is selected fine. But the scrolling does not happen.
Q
Posts made by qjh
-
RE: q-loading and scollIntoView
-
RE: q-loading and scollIntoView
Yes, I did. Loading part works, but I could not make scrollIntoView() work.
-
q-loading and scollIntoView
If I use q-loading, I can’t use scrollIntoView() method. Any advice? Thanks!
this.$q.loading.show() this.$q.loading.hide() this.$nextTick(() => { if (this.$route.hash) { const el = document.querySelector(this.$route.hash) el && el.scrollIntoView() } }
-
Quasar's fix for appearing/disappearing scrollbar moving content
Hello,
What is Quasar’s fix for appearing/disappearing scrollbar moving content? I have the issue with my quasar project. I tried many solutions found on the web (e.g. https://stackoverflow.com/questions/1417934/how-to-prevent-scrollbar-from-repositioning-web-page) but found no one that works. Quasar seems to do doing its own manipulation to prevent the problem, but it seems to make other solutions fail.
For example, the following common solution works fine in most cases with quasar.
html {
overflow-y: scroll;
}
However, it creates two y scrollbars with full width q-dialog.Thanks,