mmis1000
mmis1000
> ```ts > value > |> ^.toLowerCase() > |> JSON.parse(^) > |> (({ x, y, z }) => { > const api = new SideEffectyAPI(x) > api.initialize(y) > return api.foo(z)...
I think that problably can't be done without read the type decorator generated by typescript directly(not enabled by default), and typescript doesn't even generate design time type decorator for complex...
It looks like things like `Date.prototype.getTime()` `Map.prototype.get` can't be remapped safely unless you remap the methods and re-dispatch based on where they are object of remote realm or object of...
https://github.com/nuxt/framework/pull/7400/files#diff-38b334f71e61b2fb35956472399fb0c87ca4a9d84ef6f99c570c973115f20f0fR49 Isn't change of suspense wrapper one of the reason that page loaded twice? https://stackblitz.com/edit/github-fktkzl-zxyvww?file=src%2FApp.vue I don't think vue can keep the page instance if the wrapper changed.
> @mmis1000 Yes, it is, and nuxt/nuxt.js#14573 exists to track it. I don't believe it's affected by this PR; please let me know if you think otherwise. I think use...
> This PR deliberately doesn't make it reactive. So it should only change the suspense structure if there is _already_ a rerender happening. https://stackblitz.com/edit/github-gagmal-vjqqo3?file=pages%2Fb%2F[id].vue That line alone is already enough...
https://github.com/mmis1000/nuxt-framework/commit/6bb08590805a16d514dff5f63262af9e1acae796 I think one of potential fix would be using a counter to count how many `` we created, and delay the resolve until every one resolved? By the way,...
There is a new proposal about the `` that may be the proper fix of this bug. https://github.com/vuejs/core/pull/6736 By allow the child of the just created suspense boundary to be...
It seems `sanitize-html` also relies on postCSS. But I wonder if it is actually 'vite's fault here. In nodejs, require non-exist module do throw. So what vite did here actually...
As a temporary workaround. Alias node-buildins to a empty js file when build client bundle would restore the original behavior. I just alias url, path, fs to a empty file....