vike-vue
vike-vue copied to clipboard
🔨 Vue integration for Vike
React 18 introduced [Progressive Rendering](https://vike.dev/streaming#progressive-rendering). Does Vue support this? If not, it could be nice to find/create/follow a Vue GitHub issue about this. For example `examples/vue-query/`: when replacing [`import.meta.env.SSR ?...
A comparison of features could be neat. To give confidence to users that Vike Vue supports Nuxt features. Also for us, so what we know where Vike Vue is lacking...
See: - https://github.com/vikejs/vike-solid/pull/74 - https://docs.solidjs.com/solid-start/reference/client/client-only I think we can & should also deprecate the `` wrapper component in favor of a `clientOnly()` function. It's a much nicer DX.
It'd be nice if we could have proper completion when using `ClientOnly`. E.g. ```vue // Component.vue {{ msg }} defineProps() // App.vue ``` Here we don't get a hint for...
In addition to the title, favicon, and lang, I would find it handy to be able to specify a canonical URL in the page config. This could be beneficial for...
Hello. When using `vike-vue` the general structure of HTML is fixed in `onRenderHml` and in order to add support for teleport in SSR (https://vuejs.org/guide/scaling-up/ssr.html#teleports) one needs to: - pass a...
@brillout Let me try.
This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more. ## Rate-Limited These updates are currently rate-limited. Click on a checkbox below to force...
The PR https://github.com/vikejs/vike-vue/pull/170 introduced the [`useConfig()` component hook](https://vike.dev/useConfig) to `vike-vue`, see [this usage example](https://github.com/vikejs/vike-vue/blob/c1f988837f8b90ebe2e43b258137916e30b8f7be/examples/full/pages/images/Image.vue#L15-L32). The only thing missing to align with `vike-react` is to implement [the `` and `` components](https://vike.dev/useConfig#config-head)....