Julien Huang

Results 76 comments of Julien Huang

I was planning to try another approach. Maybe should we do something done by vue core [here](https://github.com/vuejs/core/blob/650f5c26f464505d9e865bdb0eafb24350859528/packages/runtime-core/src/apiAsyncComponent.ts#L218) ? Do you think This can be possible ? This feature will indeed...

The implementation is working well and way simpler than what i did. I like it :+1:

Sure ! This would be less confusing (`pageRef` and `layoutRef`)

I think the tempalte transformation would transform `:page-ref="page"` in to `:page-ref="page.value"` when a ref need the full `ref()` object. But it would be nice if that work

Hi :wave: that's because `` is a component wrapper (and there's 1 or 2 more components before your page component). So `defineExpose()` in your page component won't expose anything to...

Hi :wave: I wanted a similar bahavior with a `ClientOnly` only if it failed in SSR. Here's the PR : https://github.com/nuxt/framework/pull/8216 Is this what you want ? 🤔

this might be related, i'm using 3.1.2 while @Barbapapazes is using 3.1.1. I tried to use `useHead` in a component and then build a project but this did not trigger...

this is linked to https://github.com/huang-julien/nuxt-runtime-compiler/pull/37, https://github.com/nuxt/nuxt/issues/15553 and https://github.com/nuxt/nuxt/discussions/18413. What i'm trying to do is to use `app.config.ts` to define the `compilerOptions` for vue in runtime through a plugin. However since...

Hi ! :wave: this module set the default of the parallel mode to `true` so if you need to disable parallel mode for plugins added by modules, the module author...

This PR has been reworked to have the same behavior with `ClientOnly` if at least one children fail to render. It also correctly handles the different environment (prod/dev) behavior. At...