Results 147 comments of skirtle

@Justineo You may well be right. I did wonder about that when reviewing this PR, but I thought it was a small step in the right direction, which might prove...

@Justineo Good question. I spent some time going through the history of this. I think the most enlightening was #8929. Long story short, it's for `:deep()` support. The motivation was...

I've made a tool similar to `create-vue`, but aimed at scaffolding Vue-based libraries: ```sh pnpm create @skirtle/vue-lib ``` - Docs: - GitHub repo: It's likely there are still some important...

@znck. Do you think this is still worth pursuing? The file `compiler-core/src/parse.ts` no longer exists since the parser was rewritten, so it isn't clear to me how this change would...

The error `TypeError: Cannot read properties of null (reading 'parentNode')` can be caused by a lot of different things. It indicates that something went wrong earlier and now things are...

Is `v-foo.` considered valid template syntax? Maybe it should be a compiler error? Should this PR include a test?

Related: - #8818 - #8953

I'm not clear what the correct type should be, but a couple of observations: 1. This seems a similar idea to #5914. In that case the decision was to use...

I'm seeing the same problem with 4.5.1. I tried to create a minimal-ish reproduction: It's based on the default project created using `npm create vue@latest`. The main factors seem to...

> > Any reason not to include test cases for the change to `hydration.ts`? > > It seems that `jsdom's innerHTML` does not normalize `\r\n` into `\n`. I did not...