owner stringclasses 14
values | repo stringclasses 14
values | id int64 116k 4.61B | issue_number int32 1 181k | author stringlengths 1 39 | body stringlengths 1 262k | created_at timestamp[us]date 2000-06-06 02:40:44 2026-06-02 20:16:18 | updated_at timestamp[us]date 2000-06-06 02:40:44 2026-06-02 20:22:56 | reactions unknown | author_association stringclasses 5
values |
|---|---|---|---|---|---|---|---|---|---|
vuejs | core | 1,235,628,297 | 6,564 | joaovinicius | Works
> ### Vue version
> after 3.2.0-beta.5
>
> ### Link to minimal reproduction
> https://jsfiddle.net/jtsacqey/24/
>
> ### Steps to reproduce
> 1. Type Jacob into the input.
> 2. Hit enter.
>
> same as [vuejs/vue#8346](https://github.com/vuejs/vue/issues/8346)
>
> ### What is expected?
> Value p... | 2022-09-02T15:22:05 | 2022-09-02T15:22:05 | {} | NONE |
vuejs | core | 1,229,031,879 | 4,512 | brocjo | Merge progress? Anyone have any clever workarounds? This would go a long way in helping abstract out some complicated bits of our component library... | 2022-08-26T23:11:18 | 2022-08-26T23:11:18 | {
"+1": 1
} | NONE |
vuejs | core | 1,229,208,827 | 6,555 | jaalorsa517 | Thank you very much @LinusBorg .
It worked wonderfully! | 2022-08-27T15:02:11 | 2022-08-27T15:02:11 | {} | NONE |
vuejs | core | 1,230,557,574 | 6,248 | LinusBorg | Yes, we intend to fix this in dev, we just haven't gotten around to it. | 2022-08-29T16:38:57 | 2022-08-29T16:38:57 | {} | MEMBER |
vuejs | core | 1,232,717,614 | 6,571 | LinusBorg | Please provide a runnable reproduction as is required in our Issue guidelines | 2022-08-31T09:48:18 | 2022-08-31T09:48:18 | {} | MEMBER |
vuejs | core | 1,233,785,279 | 6,571 | LinusBorg | Workaround: add a key to the element which changes when you switch from one to the other. | 2022-09-01T06:07:23 | 2022-09-01T06:07:33 | {} | MEMBER |
vuejs | core | 1,230,130,052 | 6,049 | johnsoncodehk | Sorry for late 🙏, close this for now before I provide minimal reproduction. | 2022-08-29T11:02:33 | 2022-08-29T11:02:33 | {} | MEMBER |
vuejs | core | 1,231,132,184 | 6,563 | Justineo | This is expected behavior. We only invoke the handler when it's a property name/path, or it's a function literal. | 2022-08-30T04:40:10 | 2022-08-30T04:40:10 | {} | MEMBER |
vuejs | core | 1,228,293,887 | 3,948 | dreadkopp | @posva saved my day! thanks mate!
this issue went quite stale. any progress on that in sight ?
| 2022-08-26T09:49:35 | 2022-08-26T09:49:35 | {} | NONE |
vuejs | core | 1,228,361,489 | 5,584 | mileusna | > Ok guys (and @mileusna in particular) we've just faced this issue when releasing in production. We had a component which used a "mixed mode".
Give me something else that I can break. 😂
Although I'm 20+ years in software development, this is my first contact with Vue or any other SPA JS framework, so yes I stil... | 2022-08-26T11:07:31 | 2022-08-26T11:16:57 | {} | NONE |
vuejs | core | 1,230,398,455 | 6,550 | LinusBorg | This is not an error, it's actually by design. `@vue/reactivity` is decoupled from any DOM-related types, so it can't treat `HTMLElement` differently.
`@vue/runtime-dom` (and by extension, `vue` itself) does extend the `RefUnwrapBailTypes` like this to be able to bail from unref-ing `HTMLElement`:
* https://githu... | 2022-08-29T14:34:38 | 2022-08-29T14:36:34 | {} | MEMBER |
vuejs | core | 1,230,876,391 | 6,550 | visualjerk | Thanks for looking into it! I assume the error happening in our code stems from using jsdom inside our tests. We will investigate further. | 2022-08-29T21:23:23 | 2022-08-29T21:23:23 | {} | NONE |
vuejs | core | 1,231,226,055 | 6,554 | KuuBee | same problem | 2022-08-30T06:52:33 | 2022-08-30T06:52:33 | {} | NONE |
vuejs | core | 1,231,835,042 | 6,007 | b-d-k | Any updates on this issue? It's still not fixed with release 3.2.38 | 2022-08-30T15:35:57 | 2022-08-30T15:35:57 | {} | NONE |
vuejs | core | 1,232,336,507 | 6,568 | edison1105 | as a workaround:
add a key to the option to avoid hoists.
```javascript
<select v-model="foo">
<option :key="1" :value="1">One</option>
...
</select>
``` | 2022-08-31T01:14:23 | 2022-08-31T01:14:23 | {
"+1": 3
} | MEMBER |
vuejs | core | 1,232,615,387 | 6,212 | netlify[bot] | ### <span aria-hidden="true">❌</span> Deploy Preview for *vue-sfc-playground* failed.
| Name | Link |
|---------------------------------|------------------------|
|<span aria-hidden="true">🔨</span> Latest commit | fe1c8335465ca527413aa1ebd7e5e8ff5c49dd5c |
|<span aria-hidden="true">🔍</span> Latest deploy log | htt... | 2022-08-31T08:16:17 | 2022-08-31T08:16:17 | {} | NONE |
vuejs | core | 1,233,095,615 | 6,163 | sacki5 | Any updates on this? Found an open PR but no updates since 25 of June. | 2022-08-31T15:32:43 | 2022-08-31T15:32:43 | {} | NONE |
vuejs | core | 1,236,134,284 | 6,589 | adrium | Not sure how to clear the input as you suggested. But the problem probably is due to loading the data and directly calling the `handleInput` function. This probably does not give Vue.js time do bind the data to the input field. Adding console output on line 12 gives:
console.log(document.querySelector('input').v... | 2022-09-03T14:45:59 | 2022-09-03T14:45:59 | {} | NONE |
vuejs | core | 1,236,134,700 | 6,589 | adrium | A workaround could be to use `setTimeout(this.handleInput, 10)` in the `mounted` function. Is there a cleaner way to do this? | 2022-09-03T14:48:08 | 2022-09-03T14:48:08 | {} | NONE |
vuejs | core | 1,230,140,320 | 6,561 | LinusBorg | ...but that's what the hook is called, out of necessity of the naming scheme for event props. | 2022-08-29T11:12:40 | 2022-08-29T11:12:40 | {
"+1": 1
} | MEMBER |
vuejs | core | 1,231,185,961 | 6,563 | Justineo | 字面量是可以静态分析出来的,你说的是一个表达式,最后返回的是一个函数,这个不叫字面量。 | 2022-08-30T06:06:28 | 2022-08-30T06:06:28 | {} | MEMBER |
vuejs | core | 1,231,202,660 | 4,077 | netlify[bot] | ### <span aria-hidden="true">❌</span> Deploy Preview for *vue-next-template-explorer* failed.
| Name | Link |
|---------------------------------|------------------------|
|<span aria-hidden="true">🔨</span> Latest commit | 68809eb94c6c233b7de4f0bb6c8d796dc2825bad |
|<span aria-hidden="true">🔍</span> Latest deploy l... | 2022-08-30T06:26:30 | 2022-08-30T06:26:30 | {} | NONE |
vuejs | core | 1,232,698,375 | 5,918 | posva | Hello, make sure to always provide a reproduction that follows the instructions at https://new-issue.vuejs.org/?repo=vuejs/vue-next#why-repro.
Open a new issue with a reproduction that follows those instructions if you manage to create a boiled down reproduction. | 2022-08-31T09:29:38 | 2022-08-31T09:29:38 | {} | MEMBER |
vuejs | core | 1,236,402,327 | 6,586 | jaalorsa517 | @andresilva-cc I I had the same problem and I solved it by putting a wildcard prop.
```
<script setup>
defineProps({ "*": "" });
</script>
```
Don't forget to remove the package-lock.json and the node_module for the new version of the cl-button. | 2022-09-04T19:37:35 | 2022-09-04T19:37:35 | {
"+1": 2
} | NONE |
vuejs | core | 1,229,180,404 | 6,555 | LinusBorg | well, you are mounting a child component in your custom element, but don't re-remit its events.
If this was a normal vue app, would you expect the child's event to be available in the component above the component that mounted the child just like that? No - you would need to re-emit the event.
In its most minima... | 2022-08-27T12:07:02 | 2022-08-27T12:08:32 | {
"heart": 1
} | MEMBER |
vuejs | core | 1,230,085,109 | 5,952 | richgcook | Any thoughts on when this fix would be merged? | 2022-08-29T10:15:08 | 2022-08-29T10:15:08 | {} | NONE |
vuejs | core | 1,230,191,487 | 5,180 | zhuhanyuguluguluzhu | 哈哈哈哈 | 2022-08-29T12:02:04 | 2022-08-29T12:02:04 | {} | NONE |
vuejs | core | 1,231,526,060 | 6,562 | LinusBorg | I will convert this into a discussion where you could try and find someone helping you to narrow it down.
As it stands, this is not a valid bug report as it offers us no way to analyze the described behavior. Even if you did, it seems related to vue-router and thus would need to be in the router repo.
one tip: i... | 2022-08-30T11:19:53 | 2022-08-30T11:21:05 | {} | MEMBER |
vuejs | core | 1,231,915,520 | 6,007 | LinusBorg | > https://github.com/vuejs/core/issues/6568
Which is why this issue is still open.
It seems it simply got unnoticed for a while and then moved too far back in the backlog. Should definitely be fixed though. | 2022-08-30T16:46:32 | 2022-08-30T16:46:32 | {} | MEMBER |
vuejs | core | 1,232,469,806 | 6,543 | yyx990803 | Closing as stale. | 2022-08-31T05:09:24 | 2022-08-31T05:09:24 | {} | MEMBER |
vuejs | core | 1,232,806,856 | 4,814 | kazupon | Recently, an SSR issue was opened on vue-i18n with the combination of vitepress v1 alpha10 + vue-i18n.
https://github.com/intlify/vue-i18n-next/issues/1131#issuecomment-1232596381
Using the stacktrace output as a clue, I’ve found out the cause, I found the issue occurred in the vitepress build, i.e., the build of v... | 2022-08-31T11:21:23 | 2022-08-31T11:21:23 | {
"eyes": 1
} | MEMBER |
vuejs | core | 1,233,618,655 | 4,814 | kazupon | @pi0
I seem that Stub is a good workaround!
I’ll try to take your sharing as a reference and try to deal with it.
Thank you for all your helpful sharing as always! 💚 | 2022-09-01T01:13:51 | 2022-09-01T01:13:51 | {} | MEMBER |
vuejs | core | 1,234,111,165 | 1,033 | alecgibson | In our project, we're using TSX files as a nice way to write vanilla HTML outside of the Vue ecosystem (for performance reasons), which — not incorrectly — uses a syntax which is incomaptible with Vue syntax.
The Vue [docs](https://vuejs.org/guide/extras/render-function.html#jsx-tsx) even state:
> Although first ... | 2022-09-01T10:59:57 | 2022-09-01T10:59:57 | {} | NONE |
vuejs | core | 1,236,058,512 | 1,228 | then3rdman | Also wondering what the status of this is? | 2022-09-03T06:19:22 | 2022-09-03T06:19:22 | {
"+1": 1
} | NONE |
vuejs | core | 1,236,080,870 | 6,588 | netlify[bot] | ### <span aria-hidden="true">❌</span> Deploy Preview for *vue-sfc-playground* failed.
| Name | Link |
|---------------------------------|------------------------|
|<span aria-hidden="true">🔨</span> Latest commit | f78a080eca144ddf9628408b6d97a693310afb92 |
|<span aria-hidden="true">🔍</span> Latest deploy log | htt... | 2022-09-03T09:12:49 | 2022-09-03T09:12:49 | {} | NONE |
vuejs | core | 1,236,191,105 | 6,591 | Mario34 | 
Snapshot 3 is generated after switching from '5000 items' to' Empty '. You can see that the number of separated nodes is basically the same as that on the page | 2022-09-03T10:40:09 | 2022-09-03T10:40:09 | {
"+1": 2
} | NONE |
vuejs | core | 1,236,333,091 | 5,657 | y15e | I had the same error. I was able to fix by wrapping the root node with <Suspense> in my case. | 2022-09-04T12:45:07 | 2022-09-04T12:45:07 | {} | NONE |
vuejs | core | 1,236,474,349 | 6,593 | edison1105 |
workaround: use v-show instead.
```html
<span v-show="show" v-memo="[count,show]">{{count}}</span>
``` | 2022-09-05T01:55:09 | 2022-09-05T01:55:09 | {} | MEMBER |
vuejs | core | 1,550,563,593 | 8,332 | yyx990803 | Thanks for the PR - could you please add type tests in https://github.com/vuejs/core/blob/main/packages/dts-test/setupHelpers.test-d.ts? | 2023-05-17T01:36:50 | 2023-05-17T01:36:50 | {} | MEMBER |
vuejs | core | 1,550,599,499 | 8,341 | Alfred-Skyblue | I only observed the problem of event modifier replacement, thank you for your addition. | 2023-05-17T02:32:54 | 2023-05-17T02:32:54 | {
"laugh": 1
} | MEMBER |
vuejs | core | 1,552,343,905 | 8,344 | yyx990803 | `toRef` old usage is still supported. | 2023-05-18T03:10:37 | 2023-05-18T03:10:37 | {} | MEMBER |
vuejs | core | 1,553,755,650 | 8,310 | rodrigocfd | @pikax what am I doing wrong here?

Reproducible:
```vue
<script setup lang="ts" generic="T">
const props = withDefaults(defineProps<{
value?: T | null;
list: T[];
}>(), {
value: null,
});
</script>
<temp... | 2023-05-18T22:53:24 | 2023-05-18T22:53:24 | {} | NONE |
vuejs | core | 1,553,802,053 | 8,263 | yyx990803 | Traverse is used in deep watch and can be dealing with unknown object size, and therefore can be very perf sensitive. This is intentional for perf. | 2023-05-18T23:56:04 | 2023-05-18T23:56:04 | {} | MEMBER |
vuejs | core | 1,553,859,133 | 8,367 | coader | but it's will be undefined if I change the type name and run it (means it's first defined type in vscode)
but when I close vscode and re-run it, still be false again | 2023-05-19T00:51:23 | 2023-05-19T00:51:23 | {} | NONE |
vuejs | core | 1,554,299,592 | 8,372 | grindpride | Looks like its because of empty ComponentCustomProps interface
```
export interface ComponentCustomProps {
}
``` | 2023-05-19T09:31:40 | 2023-05-19T09:31:53 | {} | NONE |
vuejs | core | 1,554,329,088 | 8,352 | jd-solanki | @pikax Do you have any idea on this issue: https://github.com/vuejs/language-tools/issues/3141#issuecomment-1554326421 | 2023-05-19T09:58:44 | 2023-05-19T09:58:44 | {} | NONE |
vuejs | core | 1,551,082,936 | 7,342 | seahindeniz | @sodatea this issue is currently a blocker. Are PR's going to be merged anytime soon? | 2023-05-17T09:45:07 | 2023-05-17T09:45:07 | {} | NONE |
vuejs | core | 1,552,484,103 | 8,353 | GA-MO | +1 | 2023-05-18T06:08:09 | 2023-05-18T06:08:09 | {} | NONE |
vuejs | core | 1,552,535,945 | 8,353 | kk71 | +1 | 2023-05-18T06:35:06 | 2023-05-18T06:35:06 | {} | NONE |
vuejs | core | 1,552,672,634 | 8,357 | yyx990803 | Closing as duplicate of #8353 | 2023-05-18T07:47:22 | 2023-05-18T07:47:22 | {} | MEMBER |
vuejs | core | 1,552,568,827 | 8,353 | jakubhruby | I have this issue, too. I did some investigation and it's caused by wrong bundle `node_modules/@vue/runtime-core/dist/runtime-core.esm-bundler.js`
In 3.2.38 (which was my previous version) it's bundled like this (lines end with semicolons)

| suite | result |
|-------|--------|
| [naive-ui](https://github.com/vuejs/ecosystem-ci/actions/runs/4998091287/jobs/8953476146) | :x: failure |
| [nuxt](https://github.com/vuejs/ecosystem-ci/actions/runs/4998091287/jobs/8953... | 2023-05-17T00:50:54 | 2023-05-17T01:21:04 | {} | CONTRIBUTOR |
vuejs | core | 1,552,661,641 | 8,359 | sxzz | It's not a correct fix, see #8360 | 2023-05-18T07:41:14 | 2023-05-18T07:41:14 | {} | MEMBER |
vuejs | core | 1,554,294,794 | 8,301 | jenshoffmann1331 | @vojvodics: Yeah! I tried your hack while you were writing your comment. Works well, thank you! | 2023-05-19T09:27:17 | 2023-05-19T09:27:17 | {
"hooray": 1
} | NONE |
vuejs | core | 1,554,340,255 | 8,371 | kedrzu | It may be the case.
The condition is `transition && value`, so it would not correctly update style if:
- element is initially hidden, transition is not null and value is true (which is my case)
- element is initially shown and value is false (which is the case in link) | 2023-05-19T10:07:28 | 2023-05-19T10:12:48 | {} | NONE |
vuejs | core | 1,550,981,386 | 8,310 | Anubarak | @Dobril `3.3.2` was 5 days ago, the pull request here is not yet in a release.
@pikax thank you very much for your efforts to fix it | 2023-05-17T08:33:38 | 2023-05-17T08:33:38 | {
"+1": 1
} | NONE |
vuejs | core | 1,551,127,379 | 4,662 | Danny-Engelman | Any update, or is it time to ditch Vue and switch to Svelte? | 2023-05-17T10:17:28 | 2023-05-17T10:17:28 | {
"laugh": 1
} | NONE |
vuejs | core | 1,552,606,337 | 8,357 | Kunstderfug | Yes, out of the blue I have the same error | 2023-05-18T07:11:06 | 2023-05-18T07:11:06 | {} | NONE |
vuejs | core | 1,552,788,692 | 8,355 | tragid | @yyx990803
Hi! Fix helped to get rid of compile time errors.
Now having runtime errors, when importing default Props and default Emits in a row.
```
runtime-core.esm-bundler.js:41 [Vue warn]: Property "tag" was accessed during render but is not defined on instance.
at <TestComponent msg="Hello World!" tag="spa... | 2023-05-18T09:30:00 | 2023-05-18T09:30:00 | {} | NONE |
vuejs | core | 1,550,556,962 | 8,335 | yyx990803 | Ecosystem CI failures seem to be unrelated to this PR. | 2023-05-17T01:25:16 | 2023-05-17T01:25:16 | {} | MEMBER |
vuejs | core | 1,550,578,752 | 8,340 | yyx990803 | Thanks for fixing your own issue! | 2023-05-17T01:59:55 | 2023-05-17T01:59:55 | {} | MEMBER |
vuejs | core | 1,552,486,621 | 8,353 | flav-code | I use composition api script setup | 2023-05-18T06:09:31 | 2023-05-18T06:09:31 | {} | NONE |
vuejs | core | 1,552,590,727 | 8,353 | GGGLHHH | +1 | 2023-05-18T07:02:51 | 2023-05-18T07:02:51 | {} | NONE |
vuejs | core | 1,552,665,250 | 8,357 | yaolunmao | 我已经降级到3.2.47了,pinia也要降级 | 2023-05-18T07:43:12 | 2023-05-18T07:43:12 | {} | NONE |
vuejs | core | 1,152,385,326 | 6,088 | liulinboyi | You can use like this😉.
```html
<script setup lang="ts">
import { ref } from 'vue'
const stacks = ref([
{
name: 'jack'
},{
name: 'apple'
}
])
</script>
<template>
<div v-for="{name: Name}, i of stacks">
{{ Name }} {{ i }}
</div>
</template>
```
[Example](https://play.vuejs.org/#_... | 2022-06-10T13:50:46 | 2023-05-18T16:51:23 | {} | MEMBER |
vuejs | core | 1,553,918,199 | 4,662 | baiwusanyu-c | Thanks, I'll check it out later, maybe there's something wrong with the plug-in injection code @yoyo837 | 2023-05-19T02:29:02 | 2023-05-19T02:29:02 | {} | MEMBER |
vuejs | core | 1,551,596,583 | 4,949 | idabaicai | I have the same question
```sh
pnpm --version
7.27.1
node --version
v16.13.2
pnpm run dev-sfc
```

| 2023-05-17T15:19:48 | 2023-05-17T15:19:48 | {} | NONE |
vuejs | core | 1,552,622,728 | 8,357 | czuhai | Got the same error, seems like an error in dist bundle | 2023-05-18T07:20:03 | 2023-05-18T07:21:08 | {} | NONE |
vuejs | core | 1,552,998,105 | 8,355 | yyx990803 | Please open a separate issue so that it can be tracked as a different bug. | 2023-05-18T12:45:16 | 2023-05-18T12:45:16 | {} | MEMBER |
vuejs | core | 1,553,209,018 | 8,351 | AaronBeaudoin | **Update**: I have discovered the root issue in my project. Unfortunately, it appears that `esbuild` does not add `[Symbol.toStringTag]: "Module"` in it's "internal exporting logic" when bundling without code splitting on async imports, which is necessary for deployment to certain platforms such as Cloudflare Workers. ... | 2023-05-18T15:09:29 | 2023-05-18T15:09:29 | {
"+1": 1
} | NONE |
vuejs | core | 1,553,798,023 | 8,282 | yyx990803 | Sorry for not noticing this earlier, but I don't think this would be the right fix, as we need to match across multiple lines inside the comment, not after it.
This was fixed in 91f1c62e | 2023-05-18T23:53:22 | 2023-05-18T23:53:22 | {} | MEMBER |
vuejs | core | 1,550,617,946 | 8,303 | xiaoxiangmoe | @yyx990803 Here is a minimal reproduction for why tsx or esbuild will break `@vue/compiler-sfc`
[demo: esbuild break @vue/compiler-sfc's depedency node_modules/source-map-js/lib/quick-sort.js](https://esbuild.egoist.dev/#W1siaW5kZXgudHMiLHsiY29udGVudCI6Ii8qKlxuICogdGhpcyBpcyBhIGZ1bmN0aW9uIHdpdGhvdXQgZnJlZSB2YXJpYWJs... | 2023-05-17T03:05:25 | 2023-05-17T03:28:40 | {} | CONTRIBUTOR |
vuejs | core | 1,553,744,791 | 8,310 | rodrigocfd | > @Dobril `3.3.2` was 5 days ago, the pull request here is not yet in a release.
@Anubarak, what is the planned release for this fix? | 2023-05-18T22:36:48 | 2023-05-18T22:36:48 | {} | NONE |
vuejs | core | 1,553,874,595 | 4,662 | baiwusanyu-c | > > Since this problem has caused me some troubles, and I don’t know when the official vue will fix it, as a temporary solution, I made my PR into a vite plugin and injected the code through compilation to temporarily solve this problem problem, but for more complex scenarios still need testing, if you happen to need i... | 2023-05-19T01:13:13 | 2023-05-19T01:13:13 | {
"eyes": 1
} | MEMBER |
vuejs | core | 1,553,917,126 | 4,662 | yoyo837 | > > > Since this problem has caused me some troubles, and I don’t know when the official vue will fix it, as a temporary solution, I made my PR into a vite plugin and injected the code through compilation to temporarily solve this problem problem, but for more complex scenarios still need testing, if you happen to need... | 2023-05-19T02:26:44 | 2023-05-19T02:26:44 | {} | NONE |
vuejs | core | 1,554,278,833 | 8,310 | pikax | @rodrigocfd
Drop the `props.` from `props.list`, since the type might get mutated when is exposed to the render, I would advise against using it like that.
<img width="300" alt="image" src="https://github.com/vuejs/core/assets/4620458/aca038db-ba45-42eb-8bcb-559e7b97e7ef">
| 2023-05-19T09:13:22 | 2023-05-19T09:13:22 | {
"+1": 1
} | MEMBER |
vuejs | core | 1,551,844,084 | 8,349 | kalvenschraut | messing with types more and ultimately I think I can just work around this issue. I am working around it with a cast with `as Readonly<Ref<T>>` which is not great, but I can't find a good way to resolve the type issue on vues side. | 2023-05-17T18:07:40 | 2023-05-17T18:14:33 | {} | CONTRIBUTOR |
vuejs | core | 1,552,362,351 | 8,018 | loosheng | @Merkushin-AY You can see https://github.com/vuejs/rfcs/discussions/503 Local Mode Chapter. | 2023-05-18T03:48:10 | 2023-05-18T03:48:10 | {
"heart": 1
} | NONE |
vuejs | core | 1,552,631,578 | 8,353 | kirklin | I managed to fix the problem, wait for me to pass pr | 2023-05-18T07:24:57 | 2023-05-18T07:24:57 | {} | NONE |
vuejs | core | 1,552,760,944 | 8,357 | lijiacheng1122 | 明天要去财务处领钱了 | 2023-05-18T09:06:30 | 2023-05-18T09:06:30 | {} | NONE |
vuejs | core | 1,553,837,992 | 8,368 | yyx990803 | This doesn't seem to be related to anything in Vue core - the error comes from the Vite scanning phase, so it's more of a Vite issue.
However, I'm not able to get your repro to work in any recent versions of Vite, so I'm not even sure if this is a regression. What is the version of Vue / Vite / `@vitejs/plugin-vue` ... | 2023-05-19T00:17:28 | 2023-05-19T00:17:28 | {} | MEMBER |
vuejs | core | 1,550,533,042 | 8,335 | yyx990803 | /ecosystem-ci run | 2023-05-17T00:50:32 | 2023-05-17T00:50:32 | {
"+1": 1
} | MEMBER |
vuejs | core | 1,551,030,249 | 8,334 | edison1105 | @yyx990803 normal component also has the same issues. | 2023-05-17T09:08:19 | 2023-05-17T09:08:19 | {} | MEMBER |
vuejs | core | 1,551,523,748 | 8,303 | xiaoxiangmoe | Using source-map-js with tsx or
using source-map-js with esbuild with option "keepNames": true | 2023-05-17T14:37:50 | 2023-05-17T14:37:50 | {} | CONTRIBUTOR |
vuejs | core | 1,552,296,928 | 6,256 | GuoJikun | This feature is much needed | 2023-05-18T01:51:25 | 2023-05-18T01:51:25 | {
"+1": 3
} | NONE |
vuejs | core | 1,552,568,584 | 4,662 | baiwusanyu-c | Since this problem has caused me some troubles, and I don’t know when the official vue will fix it, as a temporary solution, I made my PR into a vite plugin and injected the code through compilation to temporarily solve this problem problem, but for more complex scenarios still need testing, if you happen to need it to... | 2023-05-18T06:50:22 | 2023-05-18T06:50:22 | {
"+1": 2,
"eyes": 4,
"heart": 5,
"rocket": 4
} | MEMBER |
vuejs | core | 1,553,926,792 | 4,662 | baiwusanyu-c | > Thanks, I'll check it out later, maybe there's something wrong with the plug-in injection code @yoyo837
Sorry, this is not a code problem. Before this test project, I manually pasted and copied 1000 style tags for testing. | 2023-05-19T02:46:50 | 2023-05-19T02:46:50 | {
"+1": 3
} | MEMBER |
vuejs | core | 1,551,118,934 | 7,342 | seahindeniz | Downgrading to following versions of the deps, solves the issue
- vue@3.2.41
- @vueuse/core@9.9.0 | 2023-05-17T10:10:52 | 2023-05-17T10:11:31 | {} | NONE |
vuejs | core | 1,552,352,485 | 8,324 | yyx990803 | First of all, we really appreciate your interest in contributing. However, I don't think this PR provides meaningful improvements to the code. In fact, I'd argue that it made it more complex for no real benefits. | 2023-05-18T03:27:57 | 2023-05-18T03:27:57 | {} | MEMBER |
vuejs | core | 1,552,360,474 | 8,332 | nooooooom | > I think we can agree to close this one then? Regardless, thanks for your effort on the PR 👍
I think so too. Thank you for your patience and strict control over the code design.
I learned quite a bit about TypeScript on this PR. | 2023-05-18T03:44:12 | 2023-05-18T03:45:33 | {} | NONE |
vuejs | core | 1,552,756,128 | 8,357 | mollyhappy | 坎坎坷坷 | 2023-05-18T09:02:36 | 2023-05-18T09:02:36 | {} | NONE |
vuejs | core | 1,553,749,497 | 8,310 | pikax | @rodrigocfd it was realeased on 3.3.3 | 2023-05-18T22:43:12 | 2023-05-18T22:43:12 | {} | MEMBER |
vuejs | core | 1,554,262,512 | 8,301 | vojvodics | @jenshoffmann1331 Did you try the hacky solution? You basically point to a different transformer than vue-jest (https://github.com/vojvodics/vue3.3.1-jest-reproduction-example/blob/main/jest.config.js#L6) and in that file you call registerTs before exporting vue-jest (https://github.com/vojvodics/vue3.3.1-jest-reproduc... | 2023-05-19T09:00:40 | 2023-05-19T09:00:40 | {
"heart": 2
} | NONE |
vuejs | core | 1,552,338,749 | 8,332 | nooooooom | > After testing this locally, it seems this doesn't actually fix vuejs/language-tools#3197 - the actual issue seems to be in Volar, not in the types of `defineEmits`.
>
> The kebab-case and camelCase conversions are mostly meant for parent consumers. Locally, `defineEmits` should just keep the exact event names for ... | 2023-05-18T03:01:54 | 2023-05-18T03:39:06 | {} | NONE |
vuejs | core | 1,552,426,073 | 8,324 | Alfred-Skyblue | Thank you for your suggestion. | 2023-05-18T05:32:27 | 2023-05-18T05:32:27 | {} | MEMBER |
vuejs | core | 1,552,454,858 | 8,353 | wjw-gavin | +1 | 2023-05-18T05:51:37 | 2023-05-18T05:51:37 | {} | NONE |
vuejs | core | 1,552,643,736 | 8,357 | sxzz | Duplicate of #8353 | 2023-05-18T07:31:35 | 2023-05-18T07:31:35 | {} | MEMBER |
vuejs | core | 1,552,707,418 | 8,358 | yyx990803 | Thanks for the PR - see more comprehensive fix in 8b7c04b1 | 2023-05-18T08:16:57 | 2023-05-18T08:16:57 | {
"+1": 1,
"eyes": 3
} | MEMBER |
vuejs | core | 1,553,844,191 | 8,367 | yyx990803 | Are you sure? The result is the same in 3.2: https://play.vuejs.org/#__DEV__eNp9UV1L60AQ/Stz96UVkiz3Ay6UtNeLCOKDCIr6kJe2mbaru7PL7qQiMf/dSaq1Kvi258zsOTNnWvU/hGLboJqoMi2jCQwJuQlg57SeVopTpWYVGRd8ZGgh4gqymwtf48nG2DqDLcZkPEEHq+gdjERrVBFARfwUEKBvvR5eU4DE0dAa4BmocQuM8lh4b3EuH57h/OquOLXokFjQiRdP2r3H4yOYzuDd96iipafEEKIPSaRrXBnC... | 2023-05-19T00:21:35 | 2023-05-19T00:36:02 | {} | MEMBER |
vuejs | core | 1,553,864,643 | 8,263 | Alfred-Skyblue | Thank you, got it. | 2023-05-19T01:01:53 | 2023-05-19T01:01:53 | {} | MEMBER |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.