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
2,657,383,224
5,312
kkuegler
The Vue Language Tools docs explicitly talk about this problem and [suggest using `defineSlots();`](https://vuejs-language-tools.vercel.app/features/slots#how-to-handle-indeterminate-slot-types) which works nicely for us. ```vue <template> <template v-for="(_, name) in $slots" #[name]="data"> <slot :name="name" ...
2025-02-13T18:13:16
2025-02-13T18:13:16
{ "+1": 3, "heart": 2 }
NONE
vuejs
core
2,658,796,884
12,852
bee1an
@edison1105 Thank you. I look forward to your fixing it
2025-02-14T09:59:16
2025-02-14T09:59:16
{}
NONE
vuejs
core
2,661,874,410
12,885
github-actions[bot]
## Size Report ### Bundles | File | Size | Gzip | Brotli | | -------------------------- | ------ | ------- | ------- | | runtime-dom.global.prod.js | 100 kB | 38.1 kB | 34.3 kB | | vue.global.prod.js | 158 kB | 58 kB | 51.6 kB | ### Usages | Name | Size | G...
2025-02-17T03:18:02
2025-02-17T03:18:02
{}
NONE
vuejs
core
2,661,892,552
12,887
github-actions[bot]
## Size Report ### Bundles | File | Size | Gzip | Brotli | | -------------------------- | ------ | ------- | ------- | | runtime-dom.global.prod.js | 100 kB | 38.1 kB | 34.3 kB | | vue.global.prod.js | 158 kB | 58 kB | 51.6 kB | ### Usages | Name | Size | G...
2025-02-17T03:37:07
2025-02-17T03:37:07
{}
NONE
vuejs
core
2,649,555,008
12,845
edison1105
will be fixed via https://github.com/vuejs/core/pull/12225
2025-02-11T00:27:12
2025-02-11T00:27:12
{}
MEMBER
vuejs
core
2,641,512,028
12,815
pkg-pr-new[bot]
[Open in Stackblitz](https://pkg.pr.new/template/39b25fae-bdf2-4000-9e55-a3e3227f64a3) <details><summary><b>@vue/compiler-core</b></summary><p> ``` npm i https://pkg.pr.new/@vue/compiler-core@12815 ``` </p></details> <details><summary><b>@vue/compiler-dom</b></summary><p> ``` npm i https://pkg.pr.new...
2025-02-07T00:28:45
2025-02-11T08:40:31
{}
NONE
vuejs
core
2,655,351,753
12,852
bee1an
@edison1105 Thanks for your answer. I solved my problem.
2025-02-13T03:07:06
2025-02-13T03:07:06
{}
NONE
vuejs
core
2,657,322,653
5,312
pegiadise
Workaround so far: ```vue <script setup lang="ts"> import { useSlots } from 'vue' const slots = useSlots() as any </script> <template> <div> <template v-for="(_, name) in slots" #[name]="slotProps"> <slot :name="name" v-bind="slotProps || {}"></slot> </template> </div> </template> ```
2025-02-13T17:43:39
2025-02-13T17:44:02
{ "+1": 1 }
NONE
vuejs
core
2,646,737,467
12,835
pkg-pr-new[bot]
[Open in Stackblitz](https://pkg.pr.new/template/63949137-f538-41cb-a1c6-7d13431827f2) <details><summary><b>@vue/compiler-core</b></summary><p> ``` npm i https://pkg.pr.new/@vue/compiler-core@12835 ``` </p></details> <details><summary><b>@vue/compiler-dom</b></summary><p> ``` npm i https://pkg.pr.new...
2025-02-10T01:36:06
2025-02-17T03:15:17
{}
NONE
vuejs
core
2,629,695,292
12,806
pkg-pr-new[bot]
[Open in Stackblitz](https://pkg.pr.new/template/ced693b3-5680-4146-aa2d-296c0fd104a4) <details><summary><b>@vue/compiler-core</b></summary><p> ``` npm i https://pkg.pr.new/@vue/compiler-core@12806 ``` </p></details> <details><summary><b>@vue/compiler-dom</b></summary><p> ``` npm i https://pkg.pr.new...
2025-02-03T01:23:34
2025-02-10T01:36:05
{}
NONE
vuejs
core
2,655,100,275
12,865
absidue
Likely related to https://github.com/vuejs/language-tools/issues/5166. If you remove the `on` prefix it might just start working.
2025-02-12T23:47:51
2025-02-12T23:47:51
{}
NONE
vuejs
core
2,661,892,259
12,886
github-actions[bot]
## Size Report ### Bundles | File | Size | Gzip | Brotli | | -------------------------- | ------ | ------- | ------- | | runtime-dom.global.prod.js | 100 kB | 38.1 kB | 34.3 kB | | vue.global.prod.js | 158 kB | 58 kB | 51.6 kB | ### Usages | Name | Size | G...
2025-02-17T03:36:47
2025-02-17T03:36:47
{}
NONE
vuejs
core
2,647,515,162
12,816
nunoraposo33
Thank you, as a temporary workarround you can just create a wrapper arround `<Teleport>` // TeleportWrapper.vue ``` <script setup lang="ts"> import { computed } from "vue" const props = defineProps<{ to: string | HTMLElement | null disabled?: boolean }>() const teleportTarget = computed(() => (props....
2025-02-10T10:08:33
2025-02-10T10:09:16
{}
NONE
vuejs
core
2,657,921,943
5,312
xsjcTony
> The Vue Language Tools docs explicitly talk about this problem and [suggest using `defineSlots();`](https://vuejs-language-tools.vercel.app/features/slots#how-to-handle-indeterminate-slot-types) which works nicely for us. > > <template> > <template v-for="(_, name) in $slots" #[name]="data"> > <slot :name="nam...
2025-02-13T23:30:19
2025-02-13T23:30:19
{}
NONE
vuejs
core
2,647,145,514
12,832
netlify[bot]
### <span aria-hidden="true">❌</span> Deploy Preview for *vue-next-template-explorer* failed. **[Why did it fail? →](https://app.netlify.com/sites/vue-next-template-explorer/deploys/67a9a9ec2c20c10008d52358?deploy_diagnostics=true)** | Name | Link | |:-:|------------------------| |<span aria-hidden="true">🔨</span> ...
2025-02-10T07:27:45
2025-02-10T07:27:45
{}
NONE
vuejs
core
2,647,180,619
12,759
edison1105
closing due to cd93dad4d97971d30e89924387c2378e8bc43c70
2025-02-10T07:48:47
2025-02-10T07:48:47
{}
MEMBER
vuejs
core
2,649,561,990
12,844
edison1105
Thanks for your feedback, but Issue is used to collect bugs, and I turned it into a discussion to collect more discussions from the community.
2025-02-11T00:33:31
2025-02-11T00:33:31
{}
MEMBER
vuejs
core
2,652,506,358
12,852
edison1105
@yakudik Please provide a **minimal** reproduction.
2025-02-12T02:30:37
2025-02-12T02:30:37
{}
MEMBER
vuejs
core
2,654,673,892
7,947
Xowap
So we've been struggling with a memory leak for quite some time now, and we are getting quite confident that the issue comes from this in particular. I'm a bit surprised by the tag that is "feature request". Cache should always be bound and have some expiration mechanism, right? De facto if you have to compile endless...
2025-02-12T19:36:39
2025-02-12T19:36:39
{}
NONE
vuejs
core
2,655,206,589
12,865
edison1105
I think there is an issue with the type definition of `DatePicker` see [demo]( https://play.vuejs.org/#eNp9UslugzAQ/RXXF6gUwaE9RSRSG6VSK3VRmqMvCAbi1NjISxopyr93bAKhVRoEYjzvzXiWd6APbZvsHNApzUyheWuJAetaInJZzxi1htE5k7xplbbkQJR8VU5aKCfEGVhD04rcwgoqciSVVg2JMFk0BCw2XJQnIEkXqgmXIc5koaSxpPAEHz77ky+OAhTdMjncGce3ZDYnBybJEJjscuHgJ...
2025-02-13T01:11:34
2025-02-13T01:11:34
{}
MEMBER
vuejs
core
2,657,984,784
12,852
edison1105
@yakudik ```diff <script lang="ts" setup> -const refHeader = useTemplateRef('refHeader') +const headerRef = useTemplateRef('refHeader') // use a diff var name is a workaround </script> <template> <header ref="refHeader" class="v-default-layout-header"> ... </header> </template> ```
2025-02-14T00:24:19
2025-02-14T00:24:19
{ "+1": 1 }
MEMBER
vuejs
core
2,491,302,475
12,448
farcry550
> PR welcome! I’ll create one!
2024-11-21T14:07:34
2025-02-14T19:38:30
{}
NONE
vuejs
core
2,601,151,587
12,746
pkg-pr-new[bot]
[Open in Stackblitz](https://pkg.pr.new/template/5a61dbbe-7283-4cb4-bb47-a62f7b6014c9) <details><summary><b>@vue/compiler-core</b></summary><p> ``` npm i https://pkg.pr.new/@vue/compiler-core@12746 ``` </p></details> <details><summary><b>@vue/compiler-ssr</b></summary><p> ``` npm i https://pkg.pr.new...
2025-01-20T01:37:31
2025-02-17T03:37:01
{}
NONE
vuejs
core
2,661,902,932
12,882
zhiyuanzmj
> use `inline:true` instead. Fixed, Thanks!
2025-02-17T03:47:38
2025-02-17T03:47:38
{}
MEMBER
vuejs
core
2,651,353,648
12,852
yakudik
Encountered with same warning but in usage of our UI kit. We have a layout component (VDefaultLayoutHeader) with code ```vue <script lang="ts" setup> const refHeader = useTemplateRef('refHeader') </script> <template> <header ref="refHeader" class="v-default-layout-header"> ... </header> </template> ``...
2025-02-11T16:33:36
2025-02-11T16:33:36
{}
NONE
vuejs
core
2,652,523,874
12,858
github-actions[bot]
## Size Report ### Bundles | File | Size | Gzip | Brotli | | -------------------------- | ------------------ | ------------------ | ------------------- | | runtime-dom.global.prod.js | 100 kB (**+15 B**) | 38.1 kB (**+2 B**) | 34.3 kB (**+10 B**) | | vue....
2025-02-12T02:43:51
2025-02-12T02:43:51
{}
NONE
vuejs
core
2,655,236,818
12,868
pkg-pr-new[bot]
[Open in Stackblitz](https://pkg.pr.new/template/b3aa510c-ff2f-48ac-a497-9769f74c3234) <details><summary><b>@vue/compiler-core</b></summary><p> ``` npm i https://pkg.pr.new/@vue/compiler-core@12868 ``` </p></details> <details><summary><b>@vue/compiler-sfc</b></summary><p> ``` npm i https://pkg.pr.new...
2025-02-13T01:37:42
2025-02-13T01:37:42
{}
NONE
vuejs
core
2,656,780,645
12,874
jh-leong
This behavior is expected. If the dependencies change while the watcher is paused, it will trigger a re-run once resumed.
2025-02-13T14:33:12
2025-02-13T14:33:12
{}
MEMBER
vuejs
core
2,656,808,650
12,874
DamianGlowala
Ah, I couldn't find such information in the docs, that explains it well! Thank you. Wish this was somehow configurable. Had a look at https://vueuse.org/shared/watchPausable/#watchpausable and fortunately this one isn't re-run once resumed.
2025-02-13T14:41:39
2025-02-13T14:41:39
{ "+1": 1 }
CONTRIBUTOR
vuejs
core
972,530,379
4,874
trusktr
> ```js > const props = { whatever } > > const app = createApp({ > render: () => h(App, props) > }) > ``` @LinusBorg That's good to know. I never used `h` before, and I had no idea that passing `props` to `h()` would cause `props` to be reactive. I always used SFC format, and instantiating a root component writte...
2021-11-18T04:34:03
2025-02-14T04:32:42
{}
NONE
vuejs
core
2,661,097,610
12,878
fazulk
@jh-leong thanks, that works for me.
2025-02-15T20:53:54
2025-02-15T20:53:54
{}
NONE
vuejs
core
2,661,891,912
12,886
netlify[bot]
### <span aria-hidden="true">❌</span> Deploy Preview for *vue-next-template-explorer* failed. **[Why did it fail? →](https://app.netlify.com/sites/vue-next-template-explorer/deploys/67b2dbb284265c000861245a?deploy_diagnostics=true)** | Name | Link | |:-:|------------------------| |<span aria-hidden="true">🔨</span> ...
2025-02-17T03:36:24
2025-02-17T06:49:02
{}
NONE
vuejs
core
2,661,771,497
12,883
github-actions[bot]
## Size Report ### Bundles | File | Size | Gzip | Brotli | | -------------------------- | ------------------ | ------------------- | ------------------- | | runtime-dom.global.prod.js | 101 kB (**+70 B**) | 38.1 kB (**+32 B**) | 34.3 kB (**-5 B**) | | v...
2025-02-17T01:44:03
2025-02-17T06:52:59
{}
NONE
vuejs
core
2,646,798,211
12,612
d-ryabtsev
> [core/packages/runtime-core/src/helpers/useModel.ts](https://github.com/vuejs/core/blob/21f8d9dba9bb51f2a5c943193c12acd5c7cca9ec/packages/runtime-core/src/helpers/useModel.ts#L61-L64) > > Lines 61 to 64 in [21f8d9d](/vuejs/core/commit/21f8d9dba9bb51f2a5c943193c12acd5c7cca9ec) > > if ( > !hasChanged(emittedValu...
2025-02-10T02:43:42
2025-02-10T02:43:42
{ "+1": 1 }
NONE
vuejs
core
2,650,194,711
12,832
github-actions[bot]
## Size Report ### Bundles | File | Size | Gzip | Brotli | | -------------------------- | ------------------- | ------------------- | ------------------- | | runtime-dom.global.prod.js | 101 kB (**+241 B**) | 38.2 kB (**+70 B**) | 34.4 kB (**+79 B**) | ...
2025-02-11T09:04:44
2025-02-11T09:04:44
{}
NONE
vuejs
core
2,661,737,742
12,882
netlify[bot]
### <span aria-hidden="true">✅</span> Deploy Preview for *vapor-repl* ready! | Name | Link | |:-:|------------------------| |<span aria-hidden="true">🔨</span> Latest commit | 906882ca2b32a9737393745d44205b30443b12f1 | |<span aria-hidden="true">🔍</span> Latest deploy log | https://app.netlify.com/sites/vapor-repl/d...
2025-02-17T01:04:29
2025-02-17T01:07:23
{}
NONE
vuejs
core
2,661,745,515
12,882
edison1105
https://github.com/vuejs/core/blob/63cf2ee3f144ac51e8f9e3280548b76289e5dcfa/packages/compiler-vapor/src/transform.ts#L197 There is no need to check `prefixIdentifiers` due to it is always `true` in compile-vapor
2025-02-17T01:14:01
2025-02-17T01:14:26
{}
MEMBER
vuejs
core
1,867,799,392
9,039
jods4
Duplicate of #6325 ?
2023-12-22T15:13:30
2023-12-22T15:13:30
{}
CONTRIBUTOR
vuejs
core
1,867,124,302
5,312
mutongwu
``` <template v-for="(_, key) in $slots" v-slot:[key]="slotProps" > <slot v-if="slotProps" :name="key" v-bind="slotProps" /> <slot v-else :name="key" /> </template> ``` same error in typescript as @NojusM
2023-12-22T01:39:49
2023-12-22T01:39:49
{}
NONE
vuejs
core
1,867,727,866
9,902
yyx990803
This is expected behavior. Vue props are not synced to children immediately - they are only updated when the current component renders (i.e. after `await nextTick()`). [example](https://play.vuejs.org/#eNqFU01v2zAM/SuCMCAJ2trDesu8YB/oYTt0w9bbvINqM45aWfIkKk0R+L+PkuKPoV2XQyySj9Qj+XTkH7ou23vga14gtJ0SCJtSM0aWwzfMwvZdycO...
2023-12-22T14:06:50
2023-12-22T14:06:50
{}
MEMBER
vuejs
core
1,868,283,354
7,942
yoyo837
Shadow DOM should support `link` style.
2023-12-23T12:20:55
2023-12-23T12:20:55
{}
NONE
vuejs
core
1,868,622,234
9,910
codspeed-hq[bot]
## [CodSpeed Performance Report](https://codspeed.io/vuejs/core/branches/renovate/autofix-ci-action-digest) ### Merging #9910 will **not alter performance** <sub>Comparing <code>renovate/autofix-ci-action-digest</code> (3535b03) with <code>main</code> (a8d0b1b)</sub> ### Summary `✅ 53` untouched benchmarks
2023-12-25T00:21:21
2023-12-25T00:21:21
{}
NONE
vuejs
core
1,865,501,921
9,876
Honye
[demo](https://play.vuejs.org/#eNqlU8Fu2zAM/RVCl7ZAZqPozXMzJFuBbYet2HbUxbWZRJ0sCZKcZgj87yMlp02AtijQkySST3x8JPdi4VyxHVBUog6tVy5CwDg40I1ZX0sRgxRzaVTvrI/w2fZuCStvezgryvRi8NlHaeoywymYHhF7p5uI9AKoM6wP/OFX1NpKASW56vIojp4h/tN8Le6s79DDntH5XsGl20GwWnWUDMA1XafMmswee7KMicGEFzPi3VqzUuviPlhDxaWvpGiJidLof7qorKHaqpyEfQ0Re/iebNEPODvY2...
2023-12-21T05:27:06
2023-12-21T05:27:06
{}
NONE
vuejs
core
1,867,452,057
9,898
codspeed-hq[bot]
## [CodSpeed Performance Report](https://codspeed.io/vuejs/core/branches/edison1105:fix/#9871) ### Merging #9898 will **not alter performance** <sub>Comparing <code>edison1105:fix/#9871</code> (58a3a07) with <code>main</code> (9fa8241)</sub> ### Summary `✅ 53` untouched benchmarks
2023-12-22T09:29:28
2023-12-22T09:29:28
{}
NONE
vuejs
core
1,867,528,895
9,892
codspeed-hq[bot]
## [CodSpeed Performance Report](https://codspeed.io/vuejs/core/branches/rotu:patch-1) ### Merging #9892 will **not alter performance** <sub>Comparing <code>rotu:patch-1</code> (339679e) with <code>main</code> (9fa8241)</sub> ### Summary `✅ 53` untouched benchmarks
2023-12-22T10:41:20
2023-12-22T10:41:20
{}
NONE
vuejs
core
1,868,466,350
9,690
codspeed-hq[bot]
## [CodSpeed Performance Report](https://codspeed.io/vuejs/core/branches/sodatea:workflow-automated-release) ### Merging #9690 will **improve performances by 73.63%** <sub>Comparing <code>sodatea:workflow-automated-release</code> (8979933) with <code>main</code> (a8d0b1b)</sub> ### Summary `⚡ 1` improvements `✅ 5...
2023-12-24T08:53:54
2023-12-24T08:53:54
{}
NONE
vuejs
core
1,869,228,850
9,920
johnsoncodehk
I'm skeptical that this use case should be handled, I don't think computed is designed to be used for recursive calculations, and `c = computed(() => c.value...) ` should indeed be infinitely recursive in my opinion. Even if the special case handles self-referencing, it still doesn't solve the more obscure similar u...
2023-12-26T03:38:22
2023-12-26T03:38:22
{ "+1": 1 }
MEMBER
vuejs
core
1,869,474,013
9,162
sxzz
/ecosystem-ci run
2023-12-26T11:27:38
2023-12-26T11:27:38
{ "+1": 1 }
MEMBER
vuejs
core
1,869,926,275
9,931
edison1105
see https://github.com/vuejs/core/issues/5256
2023-12-27T04:01:02
2023-12-27T04:01:02
{}
MEMBER
vuejs
core
1,865,277,933
9,885
jcbond92
Looking into this some more, it seems like the issue is coming from the fact that the custom element here uses a `value` prop. If I change the prop name to something like `nativeValue` everything works as expected. The other workaround I have right now is to remove the extra node when the component mounts.
2023-12-20T23:36:43
2023-12-20T23:36:43
{}
NONE
vuejs
core
1,865,328,561
9,884
edison1105
It's already been added https://github.com/vuejs/core/blob/9fa82414eba9748313d2ef28c939224b8929f046/packages/server-renderer/__tests__/render.spec.ts#L1147
2023-12-21T00:53:44
2023-12-21T00:53:44
{ "eyes": 1 }
MEMBER
vuejs
core
1,866,410,834
9,876
pikax
This is working as expected [see docs](https://vuejs.org/guide/components/props.html#prop-validation) > Additional details: > > - All props are optional by default, unless required: true is specified. > > - An absent optional prop other than Boolean will have undefined value. > > - The Boolean absent props ...
2023-12-21T14:50:49
2023-12-21T14:50:49
{ "+1": 2 }
MEMBER
vuejs
core
1,866,566,112
9,889
github-actions[bot]
## Size Report ### Bundles | File | Size | Gzip | Brotli | | -------------------------- | ------- | ------- | ------- | | runtime-dom.global.prod.js | 87.1 kB | 33.1 kB | 29.9 kB | | vue.global.prod.js | 133 kB | 50 kB | 44.8 kB | ### Usages | Name | Size |...
2023-12-21T16:03:57
2023-12-21T16:03:57
{}
NONE
vuejs
core
1,867,722,219
9,901
yyx990803
I think this should be fixed in the specific library you are using (vue-facing-decorator) unless there is a minimal reproduction to show this is indeed a Vue core issue.
2023-12-22T14:01:28
2023-12-22T14:01:28
{}
MEMBER
vuejs
core
1,867,966,974
9,903
LinusBorg
Since it works fine in the script block and only fails in the template, this doesn't seem to be a regression of #3990, I'd rather think this is a bug in vue-language-tools
2023-12-22T18:31:06
2023-12-22T18:31:06
{}
MEMBER
vuejs
core
1,869,699,812
3,341
cdauth
My personal workaround is this function: ```typescript function fixOnCleanup(onCleanup: (cleanupFn: () => void) => void): (cleanupFn: () => void) => void { const cleanupFns: Array<() => void> = []; onCleanup(() => { for (const cleanupFn of cleanupFns) { cleanupFn(); } }); return (cleanupFn: () => ...
2023-12-26T18:13:17
2023-12-26T18:13:17
{ "+1": 1 }
NONE
vuejs
core
1,870,732,433
9,219
edison1105
@wanghanzhen Due to this PR is not a high priority and we can avoid that problem by `hoistStatic: false`. so it may not be merged so soon.
2023-12-28T01:20:35
2023-12-28T01:20:35
{}
MEMBER
vuejs
core
1,867,205,446
9,892
netlify[bot]
### <span aria-hidden="true">❌</span> Deploy Preview for *vue-sfc-playground* failed. | Name | Link | |:-:|------------------------| |<span aria-hidden="true">🔨</span> Latest commit | 61f41a4dd96fe82586d572af7be699ac579116a6 | |<span aria-hidden="true">🔍</span> Latest deploy log | https://app.netlify.com/sites/vue...
2023-12-22T03:59:10
2023-12-22T03:59:10
{}
NONE
vuejs
core
1,867,291,454
9,893
LinusBorg
This works as designed
2023-12-22T06:23:58
2023-12-22T06:23:58
{}
MEMBER
vuejs
core
1,868,110,430
9,903
jods4
@johnsoncodehk do you think the bug is specifically in `vue-language-tools`? I can re-create the issue there but there was a bit of back-and-forth at #3990 time so I'd like to be sure.
2023-12-22T22:36:17
2023-12-22T22:36:17
{}
CONTRIBUTOR
vuejs
core
1,868,994,849
9,908
edison1105
<s>fixed by https://github.com/vuejs/core/pull/5912 (in version 3.4)</s> Switch to version 3.4 *DEV mode* will get a maximum recursive error. /cc @johnsoncodehk I made a pr to fix this, see https://github.com/vuejs/core/pull/9920
2023-12-25T13:52:59
2023-12-26T02:02:26
{}
MEMBER
vuejs
core
1,864,698,786
9,882
cernymatej
I know it's documented but I think the use-case for boolean props is different than boolean `v-model`. Wouldn't you at least consider adding the default value of `undefined` to the `defineModel()` macro so that it is consistent with other types of `v-model`?
2023-12-20T15:38:18
2023-12-20T15:38:18
{}
CONTRIBUTOR
vuejs
core
1,865,375,371
9,877
so1ve
The compiler doesn't resolve generics declared in `<script setup generic="...">`.
2023-12-21T02:07:00
2023-12-21T02:07:00
{}
MEMBER
vuejs
core
1,867,874,976
9,264
noahgregory-basis
Do we have any updates on this? I reported a bug (#9617) a while ago that was then mentioned as a possible duplicate of this.
2023-12-22T16:33:10
2023-12-22T16:33:10
{}
NONE
vuejs
core
1,868,621,939
9,911
github-actions[bot]
## Size Report ### Bundles | File | Size | Gzip | Brotli | | -------------------------- | ------- | ------- | ------- | | runtime-dom.global.prod.js | 87.1 kB | 33.1 kB | 29.9 kB | | vue.global.prod.js | 133 kB | 50 kB | 44.8 kB | ### Usages | Name | Size |...
2023-12-25T00:20:30
2023-12-25T00:20:30
{}
NONE
vuejs
core
1,868,781,672
9,871
yyx990803
@edison1105 it requires a change in `@vue/repl` to enable AST reuse: https://github.com/vuejs/repl/commit/5e4c7101e4b6cc27fb0810390b0ca0287a101149
2023-12-25T06:32:30
2023-12-25T06:32:30
{ "heart": 1 }
MEMBER
vuejs
core
1,869,505,886
9,908
edison1105
@abu-co You should avoid using self-referencing in the computed. it will get an error in version 3.4. see more https://github.com/vuejs/core/pull/9920#issuecomment-1869228850
2023-12-26T12:20:28
2023-12-26T12:20:28
{ "+1": 1 }
MEMBER
vuejs
core
1,869,539,854
9,908
abu-co
> You should avoid using self-referencing in the computed. it will get an error in version 3.4. @edison1105 Noted! Thanks for pointing that out. > fixed by https://github.com/vuejs/core/pull/5912 (in version 3.4) Hmm... the computed property still appears to have been evaluated twice when a single modificati...
2023-12-26T13:14:58
2023-12-26T13:14:58
{}
NONE
vuejs
core
1,869,579,799
9,908
LinusBorg
I *think* that happens because of this code here: https://github.com/vuejs/core/blob/947aacf5eae2d08ab33b07c382f547bd2cc8a5cc/packages/runtime-core/src/rendererTemplateRef.ts#L121-L129 * When elements are removed from the template ref array, that happens synchronously * Which means the computed is re-evaluated i...
2023-12-26T14:24:38
2023-12-26T14:25:06
{ "+1": 2 }
MEMBER
vuejs
core
1,702,098,307
9,108
github-actions[bot]
## Size Report ### Bundles | File | Size | Gzip | Brotli | | -------------------------- | ---------------------- | ---------------------- | ---------------------- | | runtime-dom.global.prod.js | 89.3 kB (**+2.19 kB**) | 34 kB (**+838 B**) ...
2023-09-01T03:20:10
2023-12-28T14:21:35
{}
NONE
vuejs
core
1,864,658,716
9,880
LinusBorg
As I have demonstrated, this is an Angular issue. Please open an issue there if you think there's a bug. Also consider asking on their discord (i assume they have one like everyone does?). The only further hint I can give you is that the comment I linked to states that it's fixed in Angular 9 *with Ivy enabled*, so ma...
2023-12-20T15:21:21
2023-12-20T15:21:39
{}
MEMBER
vuejs
core
1,865,510,213
9,876
Alfred-Skyblue
This is the expected behavior. CompA uses `withDefaults` to set the default value of the boolean prop in `defineProps` to `true`. This prop takes effect only when not explicitly passed when using CompA. You obtain the boolean as `false` in CompB, and subsequently, you pass this `false` from CompB to CompA. Therefore, t...
2023-12-21T05:39:12
2023-12-21T06:01:50
{}
MEMBER
vuejs
core
1,868,467,966
9,909
github-actions[bot]
## Size Report ### Bundles | File | Size | Gzip | Brotli | | -------------------------- | ------- | ------- | ------- | | runtime-dom.global.prod.js | 87.1 kB | 33.1 kB | 29.9 kB | | vue.global.prod.js | 133 kB | 50 kB | 44.8 kB | ### Usages | Name | Size |...
2023-12-24T09:02:57
2023-12-24T09:02:57
{}
NONE
vuejs
core
1,868,622,044
9,911
codspeed-hq[bot]
## [CodSpeed Performance Report](https://codspeed.io/vuejs/core/branches/renovate/playground) ### Merging #9911 will **not alter performance** <sub>Comparing <code>renovate/playground</code> (16968be) with <code>main</code> (a8d0b1b)</sub> ### Summary `✅ 53` untouched benchmarks
2023-12-25T00:20:49
2023-12-25T00:20:49
{}
NONE
vuejs
core
1,868,749,354
9,875
Masa-Shin
> I think it's better to correct the enum value to match the key and the docs I think that would be more ideal. I will fix it by the weekend.
2023-12-25T05:29:09
2023-12-25T05:29:25
{}
CONTRIBUTOR
vuejs
core
1,868,987,243
9,916
edison1105
Maybe we shouldn't force deep here if user passes `deep:false` https://github.com/vuejs/core/blob/a8d0b1b38b092ec2d10b32bedcee2eea33b77657/packages/runtime-core/src/apiWatch.ts#L211-L214
2023-12-25T13:32:17
2023-12-25T13:32:30
{}
MEMBER
vuejs
core
1,867,446,182
9,893
LinusBorg
For Questions / community support: https://github.com/vuejs/core/discussions
2023-12-22T09:23:53
2023-12-22T09:23:53
{}
MEMBER
vuejs
core
1,867,450,706
9,898
github-actions[bot]
## Size Report ### Bundles | File | Size | Gzip | Brotli | | -------------------------- | ------- | ------- | ------- | | runtime-dom.global.prod.js | 87.1 kB | 33.1 kB | 29.9 kB | | vue.global.prod.js | 133 kB | 50 kB | 44.8 kB | ### Usages | Name | Size |...
2023-12-22T09:28:08
2023-12-22T09:28:08
{}
NONE
vuejs
core
1,867,673,117
9,901
SLOE-debug
It can almost be said that the component will not be destroyed when using "vue-facing-decorator"
2023-12-22T13:13:11
2023-12-22T13:13:11
{}
NONE
vuejs
core
1,867,777,468
9,895
yyx990803
A better fix is using the end index emitted by the tokenizer in `endOpenTag` - this is more robust and actually removes the need for the `fastForward` implementation in the parser. See 7aa3f250f - the second call site of `fastForward` was actually unnecessary as it only affects parse error snapshots.
2023-12-22T14:51:41
2023-12-22T14:51:41
{}
MEMBER
vuejs
core
1,784,340,473
9,502
netlify[bot]
### <span aria-hidden="true">❌</span> Deploy Preview for *vue-next-template-explorer* failed. | Name | Link | |:-:|------------------------| |<span aria-hidden="true">🔨</span> Latest commit | 136371b5c484e4fbb0f63d0e1ee3f0cf2a605b3b | |<span aria-hidden="true">🔍</span> Latest deploy log | https://app.netlify.com/s...
2023-10-30T01:32:55
2023-12-25T10:32:08
{}
NONE
vuejs
core
1,869,239,365
9,920
yyx990803
I agree this isn't a realistic use case and the user should never do this. An error is more appropriate.
2023-12-26T04:11:09
2023-12-26T04:11:09
{}
MEMBER
vuejs
core
1,869,368,043
9,923
yyx990803
The regression can be reproduced in the SFC playground and is between beta.1 and beta.2. Looks like an issue related to Volar and the removal of global JSX registration. You can get the old behavior by adding `import "vue/jsx"` in a TS file.
2023-12-26T08:37:15
2023-12-26T09:17:15
{}
MEMBER
vuejs
core
1,866,128,452
9,877
so1ve
You can try https://github.com/so1ve/vue.ts/tree/main/packages/complex-types.
2023-12-21T11:59:04
2023-12-21T11:59:26
{ "heart": 1 }
MEMBER
vuejs
core
1,867,228,773
9,894
rotu
It seems odd to me that the `<audio>` element was omitted even though it was [present in vue 2](https://github.com/vuejs/vue/blob/305e4ae9dce0a05a422b675ff555f17878e86063/packages/compiler-sfc/src/templateCompilerModules/assetUrl.ts#L23). I don't see a reason why the attributes added in this PR were omitted in the f...
2023-12-22T04:34:49
2023-12-22T04:34:49
{}
CONTRIBUTOR
vuejs
core
1,867,315,938
9,896
HackerWand
@Alfred-Skyblue Thank you very much, it's working
2023-12-22T07:02:02
2023-12-22T07:02:02
{}
NONE
vuejs
core
1,867,410,919
9,893
LinusBorg
No they do not, just like you can't reassign component props. You would have to pass down a function as a handler to send changes back.
2023-12-22T08:48:54
2023-12-22T08:49:07
{}
MEMBER
vuejs
core
1,867,419,218
9,893
lixiaofa
> Scope slots passed parameters Is there a good solution? ElInput cannot input
2023-12-22T08:57:46
2023-12-22T08:57:46
{}
NONE
vuejs
core
1,867,670,336
9,901
SLOE-debug
![image](https://github.com/vuejs/core/assets/63086927/3c4bf036-6549-408b-b33f-6b5955641567) ![image](https://github.com/vuejs/core/assets/63086927/bc06c804-ad5c-4c02-9b64-4e76115e6b0a)
2023-12-22T13:10:33
2023-12-22T13:10:33
{}
NONE
vuejs
core
1,871,294,506
9,836
pikax
IMO the current behaviour is correct, since you can pass everything to the component, throwing an error because it cannot find the component might be weird when you do: ```html <component :is="isLink ? 'a': 'span'"/> ``` Should it warn `a` or `span` are not found? How about external custom components (aka component...
2023-12-28T15:52:37
2023-12-28T15:52:37
{}
MEMBER
vuejs
core
1,864,653,261
9,880
santhanakrishnanstark
Hi @LinusBorg Thanks for your valuable input. I truly appreciate the time you took to address my concerns. But I have tested with Angular version 10.0.14 as well and I updated the same version in the above example Stackblitz url. Still Can't able to get the props value. It would be helpful If you give more inputs. Than...
2023-12-20T15:18:09
2023-12-20T15:18:09
{}
NONE
vuejs
core
1,865,714,094
9,884
posva
I see, I didn’t see it in the PR but I didn’t check other test files
2023-12-21T07:13:37
2023-12-21T07:13:38
{}
MEMBER
vuejs
core
1,867,882,996
9,882
matthew-dean
@CernyMatej This has been a [very-long-standing error in Vue](https://github.com/vuejs/vue/issues/4792#issuecomment-1591765678), but it's probably too risky to correct it now.
2023-12-22T16:42:45
2023-12-22T16:42:45
{ "+1": 1 }
NONE
vuejs
core
1,829,121,464
9,690
github-actions[bot]
## Size Report ### Bundles | File | Size | Gzip | Brotli | | -------------------------- | ------- | ------- | ------- | | runtime-dom.global.prod.js | 87.1 kB | 33.1 kB | 29.9 kB | | vue.global.prod.js | 133 kB | 50 kB | 44.8 kB | ### Usages | Name | Size |...
2023-11-28T05:16:21
2023-12-24T08:53:01
{}
NONE
vuejs
core
1,869,280,794
9,919
haoqunjiang
> anything that might be affected there? Only `<iframe>` `src` might be a URI fragment of the current page, therefore ambiguous. Though, I don't think `<iframe>` should be included in the PR.
2023-12-26T05:59:38
2023-12-26T05:59:38
{}
MEMBER
vuejs
core
1,869,637,246
9,928
codspeed-hq[bot]
## [CodSpeed Performance Report](https://codspeed.io/vuejs/core/branches/RicardoErii:fix/watch) ### Merging #9928 will **not alter performance** <sub>Comparing <code>RicardoErii:fix/watch</code> (2bab130) with <code>main</code> (0695c69)</sub> ### Summary `✅ 53` untouched benchmarks
2023-12-26T16:06:45
2023-12-26T16:34:08
{}
NONE
vuejs
core
1,869,923,705
9,916
Alfred-Skyblue
@edison1105 I added the `depth` option in #9572 to control the depth of monitoring. When the monitored data source is `shallowReactive`, it only listens to the first layer.
2023-12-27T03:53:46
2023-12-27T03:53:46
{ "heart": 1 }
MEMBER
vuejs
core
1,870,161,911
9,219
wanghanzhen
Could this PR be merged? @edison1105
2023-12-27T10:21:22
2023-12-27T10:21:22
{}
NONE
vuejs
core
1,871,191,375
9,927
LittleSound
Regarding the API design of `baseWatch`, I haven't made too many changes other than some new callbacks. It is basically the same as `doWatch`. If you have any better design suggestions, please put them forward here. I am very happy to listen your suggestions.
2023-12-28T13:44:24
2023-12-28T13:44:24
{}
MEMBER
vuejs
core
1,868,202,528
9,894
codspeed-hq[bot]
## [CodSpeed Performance Report](https://codspeed.io/vuejs/core/branches/rotu:patch-2) ### Merging #9894 will **not alter performance** <sub>Comparing <code>rotu:patch-2</code> (d521a45) with <code>main</code> (a8d0b1b)</sub> ### Summary `✅ 53` untouched benchmarks
2023-12-23T04:39:43
2023-12-23T04:39:43
{}
NONE