Popescu Dan
Popescu Dan
LGTM, just a few tweaks: https://codepen.io/pdanpdan/pen/yLzogKq?editors=1010 - hide backdrop when in handler mode - order backdrop first and drawer second so you don't need zIndex
Cross ref: - https://github.com/quasarframework/quasar/issues/5115 - https://github.com/quasarframework/quasar/issues/4138
Vue has Suspense, but on SSR it waits for awaited components to settle, so the only way to render fast is to set a time limit and resolve the component...
In the default implementation (Vue Suspense on SSR) everything is rendered as expected. It's just that you need to wait for all the components.
Sorry - ignore all this, I think I found the right way to do it
> https://vike.dev/streaming#progressive-rendering This can be done, but of course what you get in the HTML is `Loadding...` (so no SEO or SSG) - it is what the example in PR...
I just checked the example in https://github.com/vikejs/vike-react/blob/main/examples/full/pages/streaming/%2BPage.tsx and from what I can see it's the same situation in the example in PR - it renders `Loading...` - maybe I'm missing...
I'll put it here because it is related, even if it is a new feature: One other attribute related to `lang` that should have the same treatment is `dir` -...
Looking at the code I think creating a ctx, paying it to render functions and allowing a custom templates string would be enough.
`ctx.teleports` is an object and the keys are the selectors used by each teleport. With the implementation in the PR they would all go at the end of BODY, but...