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,985,159,856 | 10,480 | luoshuaige | Thanks,i choose to use watch。But the reason that i choose use watchEffect because i do not want to white the variables if they are too many。
Can i continue to use watchEffect without writing the variables? | 2024-03-08T07:13:09 | 2024-03-08T07:13:09 | {} | NONE |
vuejs | core | 1,990,930,387 | 10,502 | qoo1476 | i checked this again and i realize this is not a vue issue. so close it. | 2024-03-12T07:18:58 | 2024-03-12T07:18:58 | {} | NONE |
vuejs | core | 1,991,191,658 | 10,497 | skirtles-code | Similar to #4091. | 2024-03-12T09:43:54 | 2024-03-12T09:43:54 | {} | CONTRIBUTOR |
vuejs | core | 1,997,435,150 | 10,353 | frankie-zeng | the change from 3.4.8 -> 3.4.9 effect it, could you list some possible reasons? appreciate it | 2024-03-14T13:13:46 | 2024-03-14T13:13:46 | {} | NONE |
vuejs | core | 1,999,154,391 | 6,370 | rockey2020 | I want to destroy the components manually | 2024-03-15T08:25:34 | 2024-03-15T08:25:34 | {} | NONE |
vuejs | core | 2,002,285,371 | 9,006 | edison1105 | > #9012 has fixed the second issue, i.e. prop's defaults are used as a fallback in case value was removed on a host. But the first one (prop's defaults should be reflected on a host element) is still present.
😄
I re-file a new PR to handling the remaining issues | 2024-03-17T02:38:36 | 2024-03-17T02:38:36 | {} | MEMBER |
vuejs | core | 1,986,130,834 | 10,066 | 719media | Great, thanks for all your help on this :) | 2024-03-08T17:39:40 | 2024-03-08T17:39:40 | {} | NONE |
vuejs | core | 1,989,752,127 | 10,497 | edison1105 | [simply reproduction](https://play.vuejs.org/#eNqFVEFu2zAQ/AqhSxwgll0EvbiO0TZNgfTQBrWPujDSymZCkQK5UhwY+nuXlCkqTpOcbO7OjpczQx+Sb3Wdtg0ki2RpcyNqZBawqZnkanuVJWizZJUpUdXaILvWVc1Koyt2ls7cQStQ6ObPMrWc9QQEpwNCVUuOQCfGln5wRt+Xs1EjuSD+XKtSbNMHqxUtcXDwLMkJLySYPzUKrWiHBfMd1+NS6qdfvoamgYtQz3eQP/6n/mD3rpYldwYsmBayZOghN1vAvn2z/g17+j... | 2024-03-12T01:33:40 | 2024-03-12T08:22:30 | {} | MEMBER |
vuejs | core | 1,992,958,427 | 10,503 | edison1105 | The early return here causes `el.value` not to be updated
https://github.com/vuejs/core/blob/3648498ae55e239a54fff710a923531d16bde971/packages/runtime-dom/src/directives/vModel.ts#L90-L96 | 2024-03-13T01:21:20 | 2024-03-13T01:21:52 | {} | MEMBER |
vuejs | core | 1,994,605,051 | 10,512 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| -------------------------- | ------- | ------- | ------- |
| runtime-dom.global.prod.js | 90.5 kB | 34.4 kB | 31 kB |
| vue.global.prod.js | 148 kB | 53.7 kB | 47.9 kB |
### Usages
| Name | Size |... | 2024-03-13T15:01:32 | 2024-03-13T15:01:32 | {} | NONE |
vuejs | core | 1,994,607,047 | 5,312 | itelmenko | How to fix it in current project? | 2024-03-13T15:02:24 | 2024-03-13T15:02:24 | {} | NONE |
vuejs | core | 2,002,949,329 | 10,541 | troy351 | My bad, should be `withDefaults(defineProps<{ foo?: [number, number] }>(), { foo: () => [1, 1] })` | 2024-03-18T05:19:51 | 2024-03-18T05:19:51 | {} | NONE |
vuejs | core | 1,985,196,973 | 10,475 | LinusBorg | Throwing warnings or errors for side-effects is not really possible, in practical terms, as this would likely break lots of existing code that does use a side-effect in a way that is not a problem for those usages.
In your case, the side-effect isn't really the problem I think, it's that you return the same value, a... | 2024-03-08T07:39:33 | 2024-03-08T07:39:33 | {} | MEMBER |
vuejs | core | 1,987,109,343 | 10,476 | Shyam-Chen | <img width="902" alt="image" src="https://github.com/vuejs/core/assets/13535256/bcc4f440-026c-469d-8d9c-aab3d0d29709">
| 2024-03-10T06:45:01 | 2024-03-10T06:45:01 | {} | CONTRIBUTOR |
vuejs | core | 1,985,069,139 | 10,478 | gde-pass | > Use Vite.
Vite use rollup ... | 2024-03-08T05:37:42 | 2024-03-08T05:37:42 | {} | NONE |
vuejs | core | 1,985,193,187 | 10,480 | LinusBorg | So here's the explanation: When you use an OR condition (with `||`), The browser will not evaluate the second condition if the first one is already evaluating to `true`.
For your example, this means that once `temp.value >= 50` is true, `height.value` will no longer be accessed by the Javascript runtime, and so Vue ... | 2024-03-08T07:36:03 | 2024-03-08T07:36:03 | {
"+1": 1
} | MEMBER |
vuejs | core | 1,772,915,820 | 7,311 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| -------------------------- | ------- | ------- | ------- |
| runtime-dom.global.prod.js | 90.5 kB | 34.4 kB | 31 kB |
| vue.global.prod.js | 148 kB | 53.7 kB | 47.9 kB |
### Usages
| Name | Size |... | 2023-10-20T15:05:49 | 2024-03-10T16:38:50 | {} | NONE |
vuejs | core | 1,999,634,151 | 10,517 | skirtles-code | 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 in a state that Vue wasn't expecting.
In your case I would suggest focusing on the other error message, `TypeError: (0, a.toValue)... | 2024-03-15T13:10:48 | 2024-03-15T13:10:48 | {} | CONTRIBUTOR |
vuejs | core | 1,994,445,361 | 10,511 | Jerd0 | https://github.com/vuejs/core/issues/9992 mb this link will be helpful
also, looks like this issue has been added in version 3.3.9 | 2024-03-13T13:46:32 | 2024-03-13T15:13:20 | {} | NONE |
vuejs | core | 1,996,392,625 | 10,511 | edison1105 | [a workaround](https://play.vuejs.org/#eNp9UltLwzAU/ivhPCmMDi9PdQoqe9AHFfUxMLr02GVLk5BLNxn7756kdI4xVgo5+W45Oe0WHq0tuohQwsQLJ21gHkO0D1xPxj1AJW0CtlZVARNRy44JVXl/z4FqDgTS2r/JSEsOODDR1odflcoi+bdczyuxapyJui6Zw/qO613WjQdh72BeGIt1zkjWcr1AhxflwnToLo+D5irikJTUs0oE2eGxrHGIutcN58EIAh2lf2RTLL3RNBIyMcZBmNZKhe7dBmm051CmOEYPh0ops37NW... | 2024-03-14T04:41:06 | 2024-03-14T04:41:06 | {} | MEMBER |
vuejs | core | 1,997,263,089 | 10,464 | Doctor-wu | @sodatea Hi, I don't think this PR just fixed the edge case, since case like this
```typescript
const array = reactive([1, 2, 3])
watchSyncEffect(() => {
console.log(array.hasOwnProperty(0))
})
array[0] = 11
```
will not trigger reactive as well | 2024-03-14T11:46:48 | 2024-03-14T11:46:48 | {} | MEMBER |
vuejs | core | 2,002,675,064 | 10,539 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| -------------------------- | ------- | ------- | ------- |
| runtime-dom.global.prod.js | 90.6 kB | 34.4 kB | 31 kB |
| vue.global.prod.js | 148 kB | 53.7 kB | 47.9 kB |
### Usages
| Name | Size |... | 2024-03-18T00:15:09 | 2024-03-18T00:15:09 | {} | NONE |
vuejs | core | 1,983,054,355 | 10,474 | baiwusanyu-c | https://github.com/vuejs/core/issues/7391 | 2024-03-07T09:15:04 | 2024-03-07T09:15:04 | {
"+1": 1
} | MEMBER |
vuejs | core | 1,983,626,803 | 9,927 | LittleSound | `onEffectCleanup` has been implemented in 2cc5615, and the scheduler was recently refactored in #10407. I will update this PR to support these new changes, which may take some time. | 2024-03-07T14:30:27 | 2024-03-07T14:30:37 | {} | MEMBER |
vuejs | core | 1,985,076,027 | 10,478 | Shyam-Chen | https://github.com/vuejs/rollup-plugin-vue
> This is no longer maintained. Use [Vite](https://vitejs.dev/) and [@vitejs/plugin-vue](https://github.com/vitejs/vite/tree/main/packages/plugin-vue) instead. | 2024-03-08T05:46:53 | 2024-03-08T05:46:53 | {} | CONTRIBUTOR |
vuejs | core | 1,985,216,134 | 10,475 | sadovsf | If you would be correct, i would expect sorting to not show after new data arrives. Issue is that whole computed stops everything. I change tab value, computed updates, return completely different reactive array (sort is called on that one). But component does not update itself, throws no error, no warning it simply st... | 2024-03-08T07:56:47 | 2024-03-08T08:02:00 | {} | NONE |
vuejs | core | 1,987,478,151 | 10,491 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| -------------------------- | ------- | ------- | ------- |
| runtime-dom.global.prod.js | 90.5 kB | 34.4 kB | 31 kB |
| vue.global.prod.js | 148 kB | 53.7 kB | 47.9 kB |
### Usages
| Name | Size |... | 2024-03-11T01:37:45 | 2024-03-11T01:37:45 | {} | NONE |
vuejs | core | 1,694,211,466 | 9,053 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| -------------------------- | ------------------- | ------------------ | ------------------- |
| runtime-dom.global.prod.js | 90.5 kB (**+28 B**) | 34.4 kB (**+4 B**) | 31 kB (**+13 B**) |
| v... | 2023-08-26T07:27:13 | 2024-03-13T13:42:27 | {} | NONE |
vuejs | core | 1,984,308,662 | 5,652 | raffle-x-dev | > ```ts
> props: {
> whatever: BigInt as unknown as PropType<bigint>
> }
> ```
I'm sorry, where is this supposed to go in order to read bigints correctly from props? thanks! | 2024-03-07T19:47:20 | 2024-03-07T19:47:20 | {} | NONE |
vuejs | core | 1,985,079,602 | 10,480 | Shyam-Chen | Duplicate of https://github.com/vuejs/core/issues/10438 | 2024-03-08T05:51:10 | 2024-03-08T05:51:10 | {} | CONTRIBUTOR |
vuejs | core | 1,989,737,766 | 10,446 | edison1105 | this PR maybe a duplicate of https://github.com/vuejs/core/pull/9351/files | 2024-03-12T01:24:16 | 2024-03-12T01:24:16 | {} | MEMBER |
vuejs | core | 1,995,987,426 | 10,512 | sqal | What's wrong with using `Directive` type?
```ts
import { type Directive } from 'vue'
const vFocus: Directive<HTMLInputElement> = {
mounted(el) {
el.focus()
}
}
``` | 2024-03-13T22:17:08 | 2024-03-13T22:17:08 | {} | CONTRIBUTOR |
vuejs | core | 1,997,350,085 | 10,353 | haoqunjiang | Closing due to lack of reproduction. | 2024-03-14T12:33:21 | 2024-03-14T12:33:21 | {} | MEMBER |
vuejs | core | 1,997,416,634 | 10,353 | frankie-zeng | electron env, can reproduction in single browser env | 2024-03-14T13:04:41 | 2024-03-14T13:04:41 | {} | NONE |
vuejs | core | 1,998,831,444 | 10,529 | Doctor-wu | When you modified the contents of msg (which is a ref), it will trigger it's subscriber (which includes the render function) to update, so the render will re-run to update view. Thus `test()` will be re-run to check if should render it's sub-tree. | 2024-03-15T02:27:23 | 2024-03-15T02:28:32 | {
"+1": 1
} | MEMBER |
vuejs | core | 1,999,166,873 | 10,504 | haoqunjiang | Expected. Not a bug. | 2024-03-15T08:33:40 | 2024-03-15T08:33:40 | {} | MEMBER |
vuejs | core | 3,322,660,744 | 13,894 | edison1105 | Also need to consider the usage of `v-bind="prop"`.
see [Playground with this PR](https://deploy-preview-13894--vue-sfc-playground.netlify.app/#__SSR__eNp9U81uEzEQfpWRL9uIzSYl7WVJkWgVITgUBD0gYQ5md5K69dqWf5ZEUd6d8XobQlX1srLn+/E3Y++efbC26iOymi1946QN4DFE+55r2VnjAuzBoWiC7BEOsHamg4L4BddcN0b7ADJg5+HqSDv7eV7C2xIWJVyUcPlrwrXC... | 2025-09-23T06:55:49 | 2025-09-23T06:56:03 | {} | MEMBER |
vuejs | core | 3,295,237,703 | 13,897 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| -------------------------- | ------------------ | ------------------- | ------------------- |
| runtime-dom.global.prod.js | 102 kB (**+92 B**) | 38.6 kB (**+34 B**) | 34.7 kB (**-9 B**) |
| v... | 2025-09-16T05:01:03 | 2025-09-24T09:18:29 | {} | NONE |
vuejs | core | 3,326,657,348 | 13,923 | pkg-pr-new[bot] |
[Open in StackBlitz](https://pkg.pr.new/template/7150ec94-72a3-476c-b1c3-9c2a75b0d69d)
<details><summary><b>@vue/compiler-core</b></summary><p>
```
npm i https://pkg.pr.new/@vue/compiler-core@13923
```
</p></details>
<details><summary><b>@vue/compiler-dom</b></summary><p>
```
npm i https://pkg.pr.new... | 2025-09-24T05:59:31 | 2025-09-24T13:32:23 | {} | NONE |
vuejs | core | 3,328,494,213 | 13,913 | coderabbitai[bot] | <!-- This is an auto-generated comment: summarize by coderabbit.ai -->
<!-- This is an auto-generated comment: skip review by coderabbit.ai -->
> [!IMPORTANT]
> ## Review skipped
>
> Bot user detected.
>
> To trigger a single review, invoke the `@coderabbitai review` command.
>
> You can disable this status message... | 2025-09-24T13:36:19 | 2025-09-24T13:36:19 | {} | NONE |
vuejs | core | 3,332,611,333 | 13,924 | benjamin-larsen | @edison1105 I have now made the tests, I have tested the tests with the changes reverted (with it failing, like expected) and the the test passing with the changes in the PR (as expected). | 2025-09-25T07:40:38 | 2025-09-25T07:40:38 | {} | NONE |
vuejs | core | 2,409,912,474 | 12,171 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| -------------------------- | ------ | ------- | ------- |
| runtime-dom.global.prod.js | 101 kB | 38.5 kB | 34.6 kB |
| vue.global.prod.js | 159 kB | 58.6 kB | 52.1 kB |
### Usages
| Name | Size | G... | 2024-10-14T04:18:18 | 2025-09-23T01:51:37 | {} | NONE |
vuejs | core | 3,326,114,810 | 13,922 | pkg-pr-new[bot] |
[Open in StackBlitz](https://pkg.pr.new/template/3e37a070-e5e5-46b3-9ea5-17432d26bcc2)
<details><summary><b>@vue/compiler-core</b></summary><p>
```
npm i https://pkg.pr.new/@vue/compiler-core@13922
```
</p></details>
<details><summary><b>@vue/compiler-dom</b></summary><p>
```
npm i https://pkg.pr.new... | 2025-09-24T01:31:08 | 2025-09-24T01:47:45 | {} | NONE |
vuejs | core | 3,327,280,379 | 9,675 | mtorromeo | Moved `onCancel` to `InputHTMLAttributes` and `DialogHTMLAttributes` | 2025-09-24T08:52:42 | 2025-09-24T08:52:42 | {} | CONTRIBUTOR |
vuejs | core | 3,316,668,044 | 13,914 | pkg-pr-new[bot] |
[Open in StackBlitz](https://pkg.pr.new/template/8180ddb8-25b1-4c8f-a744-97ff557fd2dd)
<details><summary><b>@vue/compiler-core</b></summary><p>
```
npm i https://pkg.pr.new/@vue/compiler-core@13914
```
</p></details>
<details><summary><b>@vue/compiler-dom</b></summary><p>
```
npm i https://pkg.pr.new... | 2025-09-22T03:48:28 | 2025-09-24T08:56:20 | {} | NONE |
vuejs | core | 3,258,630,793 | 13,853 | coderabbitai[bot] | <!-- This is an auto-generated comment: summarize by coderabbit.ai -->
<!-- walkthrough_start -->
## Walkthrough
forceReflow was changed to accept a target element and measure using that element's ownerDocument; call sites in Transition and TransitionGroup now pass the relevant element so reflow is computed against th... | 2025-09-05T14:51:08 | 2025-09-24T14:13:19 | {} | NONE |
vuejs | core | 3,322,350,986 | 12,417 | alex-snezhko | This appears to have been fixed in version 3.5.14 | 2025-09-23T04:14:18 | 2025-09-23T04:14:18 | {
"heart": 2
} | CONTRIBUTOR |
vuejs | core | 3,326,171,617 | 13,917 | edison1105 | The console outputs both warning and exception messages. By default, exceptions are thrown in the dev. If you want to throw them in prod as well, you can refer to https://vuejs.org/api/application.html#app-config-throwunhandlederrorinproduction.
<img width="587" height="145" alt="Image" src="https://github.com/user-att... | 2025-09-24T02:00:45 | 2025-09-24T02:00:45 | {} | MEMBER |
vuejs | core | 3,327,400,059 | 13,897 | edison1105 | /ecosystem-ci run | 2025-09-24T09:23:44 | 2025-09-24T09:23:44 | {
"+1": 1
} | MEMBER |
vuejs | core | 3,327,139,848 | 9,675 | coderabbitai[bot] | <!-- This is an auto-generated comment: summarize by coderabbit.ai -->
<!-- walkthrough_start -->
## Walkthrough
Updated JSX event handler typings in `packages/runtime-dom/src/jsx.ts`: removed `DetailsHTMLAttributes.onToggle`, added several new event handlers (formdata, fullscreen, popover, animation, security, transi... | 2025-09-24T08:13:35 | 2025-09-24T09:45:07 | {} | NONE |
vuejs | core | 2,889,331,808 | 12,965 | coderabbitai[bot] | <!-- This is an auto-generated comment: summarize by coderabbit.ai -->
<!-- walkthrough_start -->
## Walkthrough
Adds an optional `shadowRootOptions` to custom element options and uses it when calling `attachShadow` (forcing `mode: 'open'`). Adds two skipped tests that assert `shadowRoot.delegatesFocus` but are skipp... | 2025-05-19T00:50:35 | 2025-09-24T09:48:45 | {} | NONE |
vuejs | core | 3,328,968,861 | 12,965 | padcom | Merci! | 2025-09-24T14:42:32 | 2025-09-24T14:42:32 | {} | CONTRIBUTOR |
vuejs | core | 3,262,230,452 | 13,853 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| -------------------------- | ------------------ | ------------------- | ------------------- |
| runtime-dom.global.prod.js | 102 kB (**+32 B**) | 38.6 kB (**+14 B**) | 34.7 kB (**+11 B**) |
| v... | 2025-09-06T14:02:51 | 2025-09-25T00:40:59 | {} | NONE |
vuejs | core | 3,268,724,663 | 13,861 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| --------------------------- | ------------------ | ------------------- | ------------------- |
| compiler-dom.global.prod.js | 84 kB | 29.8 kB | 26.3 kB |
... | 2025-09-09T03:27:13 | 2025-09-23T07:11:31 | {} | NONE |
vuejs | core | 3,268,724,716 | 13,861 | pkg-pr-new[bot] |
[Open in StackBlitz](https://pkg.pr.new/template/a477c9fe-2a55-42bc-8375-e837a75bb5e2)
<details><summary><b>@vue/compiler-core</b></summary><p>
```
npm i https://pkg.pr.new/@vue/compiler-core@13861
```
</p></details>
<details><summary><b>@vue/compiler-dom</b></summary><p>
```
npm i https://pkg.pr.new... | 2025-09-09T03:27:15 | 2025-09-23T07:11:42 | {} | NONE |
vuejs | core | 3,322,738,364 | 13,861 | edison1105 | LGTM.
Note: Documentation at https://vuejs.org/api/reactivity-core.html#watch needs to be updated when this feature is landed. | 2025-09-23T07:21:46 | 2025-09-23T07:21:46 | {
"heart": 3
} | MEMBER |
vuejs | core | 3,325,972,404 | 13,921 | edison1105 | a workaround:
```js
// in Comp3.vue
onBeforeUpdate(() => {
data.value = inject("key");
provide("key", data.value);
})
``` | 2025-09-24T00:17:58 | 2025-09-24T00:17:58 | {} | MEMBER |
vuejs | core | 3,322,091,648 | 12,171 | coderabbitai[bot] | <!-- This is an auto-generated comment: summarize by coderabbit.ai -->
<!-- walkthrough_start -->
## Walkthrough
SSR transform now reorders v-show to be processed last and updates SSR codegen/tests to merge _attrs directly via _mergeProps. A new test covers v-show combined with inline display style to validate compose... | 2025-09-23T01:50:36 | 2025-09-24T09:06:05 | {} | NONE |
vuejs | core | 3,254,083,975 | 13,848 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| -------------------------- | ------ | ------- | ------- |
| runtime-dom.global.prod.js | 101 kB | 38.5 kB | 34.6 kB |
| vue.global.prod.js | 159 kB | 58.6 kB | 52.2 kB |
### Usages
| Name | Size | G... | 2025-09-04T14:46:28 | 2025-09-24T09:10:09 | {} | NONE |
vuejs | core | 3,327,237,539 | 9,675 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| -------------------------- | ------ | ------- | ------- |
| runtime-dom.global.prod.js | 102 kB | 38.6 kB | 34.7 kB |
| vue.global.prod.js | 160 kB | 58.7 kB | 52.3 kB |
### Usages
| Name | Size | G... | 2025-09-24T08:40:41 | 2025-09-24T09:45:00 | {} | NONE |
vuejs | core | 2,689,392,790 | 12,965 | pkg-pr-new[bot] |
[Open in StackBlitz](https://pkg.pr.new/template/5ae5d00e-543c-4094-92de-fabc65ece22b)
<details><summary><b>@vue/compiler-core</b></summary><p>
```
npm i https://pkg.pr.new/@vue/compiler-core@12965
```
</p></details>
<details><summary><b>@vue/compiler-dom</b></summary><p>
```
npm i https://pkg.pr.new... | 2025-02-28T00:10:35 | 2025-09-24T09:46:00 | {} | NONE |
vuejs | core | 3,327,512,985 | 13,924 | edison1105 | Could you please add a test? | 2025-09-24T09:51:31 | 2025-09-24T09:51:31 | {} | MEMBER |
vuejs | core | 3,326,656,726 | 13,923 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| -------------------------- | ------ | ------- | ------- |
| runtime-dom.global.prod.js | 102 kB | 38.6 kB | 34.7 kB |
| vue.global.prod.js | 160 kB | 58.7 kB | 52.3 kB |
### Usages
| Name | Size | G... | 2025-09-24T05:59:14 | 2025-09-24T13:32:13 | {} | NONE |
vuejs | core | 3,290,174,238 | 13,882 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| -------------------------- | ------ | ------- | ------- |
| runtime-dom.global.prod.js | 102 kB | 38.6 kB | 34.7 kB |
| vue.global.prod.js | 160 kB | 58.7 kB | 52.3 kB |
### Usages
| Name | Size | G... | 2025-09-15T01:24:09 | 2025-09-24T13:37:07 | {} | NONE |
vuejs | core | 3,316,535,833 | 13,913 | pkg-pr-new[bot] |
[Open in StackBlitz](https://pkg.pr.new/template/a9173323-3672-4949-8845-cf099290ffa0)
<details><summary><b>@vue/compiler-core</b></summary><p>
```
npm i https://pkg.pr.new/@vue/compiler-core@13913
```
</p></details>
<details><summary><b>@vue/compiler-dom</b></summary><p>
```
npm i https://pkg.pr.new... | 2025-09-22T02:15:56 | 2025-09-24T13:44:52 | {} | NONE |
vuejs | core | 3,331,952,276 | 13,926 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| --------------------------- | ------ | ------- | ------- |
| compiler-dom.global.prod.js | 84 kB | 29.8 kB | 26.3 kB |
| runtime-dom.global.prod.js | 104 kB | 39.1 kB | 35.3 kB |
| vue.global.prod.js | 162 kB | 59.3 k... | 2025-09-25T03:29:26 | 2025-09-25T03:29:26 | {} | NONE |
vuejs | core | 2,480,665,130 | 12,416 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| -------------------------- | ------ | ------- | ------- |
| runtime-dom.global.prod.js | 101 kB | 38.5 kB | 34.6 kB |
| vue.global.prod.js | 159 kB | 58.6 kB | 52.1 kB |
### Usages
| Name | Size | G... | 2024-11-16T16:58:36 | 2025-09-23T02:36:00 | {} | NONE |
vuejs | core | 3,327,094,443 | 9,675 | edison1105 | Thanks for this PR. Could you please resolve the conflicts? | 2025-09-24T08:00:30 | 2025-09-24T08:00:30 | {} | MEMBER |
vuejs | core | 3,323,861,885 | 13,918 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| -------------------------- | ------------------ | ------------------- | ------------------- |
| runtime-dom.global.prod.js | 101 kB (**-79 B**) | 38.5 kB (**-30 B**) | 34.6 kB (**-25 B**) |
| v... | 2025-09-23T12:44:17 | 2025-09-24T09:15:48 | {} | NONE |
vuejs | core | 3,327,549,680 | 13,925 | coderabbitai[bot] | <!-- This is an auto-generated comment: summarize by coderabbit.ai -->
<!-- This is an auto-generated comment: failure by coderabbit.ai -->
> [!CAUTION]
> ## Review failed
>
> The pull request is closed.
<!-- end of auto-generated comment: failure by coderabbit.ai -->
<!-- walkthrough_start -->
## Walkthrough
The ... | 2025-09-24T10:01:33 | 2025-09-24T10:04:02 | {} | NONE |
vuejs | core | 3,096,109,957 | 13,675 | coderabbitai[bot] | <!-- This is an auto-generated comment: summarize by coderabbit.ai -->
<!-- This is an auto-generated comment: skip review by coderabbit.ai -->
> [!IMPORTANT]
> ## Review skipped
>
> Auto reviews are disabled on base/target branches other than the default branch.
>
>
>
> Please check the settings in the CodeRabbit... | 2025-07-21T10:34:03 | 2025-09-24T13:40:26 | {} | NONE |
vuejs | core | 3,327,515,861 | 13,924 | pkg-pr-new[bot] |
[Open in StackBlitz](https://pkg.pr.new/template/4c085662-5130-4ebf-87af-bbb07f8a0f49)
<details><summary><b>@vue/compiler-core</b></summary><p>
```
npm i https://pkg.pr.new/@vue/compiler-core@13924
```
</p></details>
<details><summary><b>@vue/compiler-dom</b></summary><p>
```
npm i https://pkg.pr.new... | 2025-09-24T09:52:22 | 2025-09-25T09:17:39 | {} | NONE |
vuejs | core | 2,409,912,610 | 12,171 | pkg-pr-new[bot] |
[Open in StackBlitz](https://pkg.pr.new/template/1574ffbb-4786-4c73-a4e7-9ff9e0d76cfe)
<details><summary><b>@vue/compiler-core</b></summary><p>
```
npm i https://pkg.pr.new/@vue/compiler-core@12171
```
</p></details>
<details><summary><b>@vue/compiler-dom</b></summary><p>
```
npm i https://pkg.pr.new... | 2024-10-14T04:18:30 | 2025-09-23T01:51:36 | {} | NONE |
vuejs | core | 3,322,599,308 | 13,908 | 9romise | Sorry to bother again — I've rebased the PR onto the `minor` branch. If anything was missed in the earlier review, please take another look. Thanks. | 2025-09-23T06:27:58 | 2025-09-23T06:27:58 | {} | CONTRIBUTOR |
vuejs | core | 3,312,579,764 | 13,861 | 9romise | > We should probably benchmark this.
>
> It would be good to have this for `effectScope` and `watch`. This would allow us to get the `signal` with `getCurrentScope`.
>
> ```ts
> const {signal} = getCurrentScope()
>
> fetch(url, {signal})
> ```
That looks awesome! I’ve opened [a new PR for `effectScope`](h... | 2025-09-19T15:09:56 | 2025-09-23T07:38:15 | {} | CONTRIBUTOR |
vuejs | core | 3,326,114,333 | 13,922 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| -------------------------- | ------ | ------- | ------- |
| runtime-dom.global.prod.js | 101 kB | 38.5 kB | 34.6 kB |
| vue.global.prod.js | 159 kB | 58.6 kB | 52.1 kB |
### Usages
| Name | Size | G... | 2025-09-24T01:30:56 | 2025-09-24T01:30:56 | {} | NONE |
vuejs | core | 3,326,112,121 | 13,922 | coderabbitai[bot] | <!-- This is an auto-generated comment: summarize by coderabbit.ai -->
<!-- walkthrough_start -->
## Walkthrough
Moved generation of the runtime props declaration earlier in compileScript so `propsDecl` is computed before inline template handling; removed the later duplicate computation. Also added a test covering a p... | 2025-09-24T01:30:01 | 2025-09-24T01:50:30 | {} | NONE |
vuejs | core | 3,326,466,030 | 13,920 | patroza | > The way you are writing it at the moment only works for static components, if you want to use dynamic components you need to use the built-in `<component>` element. The documentation on how to use dynamic components with Vue is here: https://vuejs.org/guide/essentials/component-basics.html#dynamic-components
>
> It ... | 2025-09-24T04:40:47 | 2025-09-24T04:41:21 | {
"+1": 1
} | NONE |
vuejs | core | 3,326,671,373 | 13,918 | vue-bot |
📝 Ran ecosystem CI: [Open](https://github.com//vuejs/ecosystem-ci/actions/runs/17967743554)
| suite | result | [latest scheduled](https://github.com/vuejs/ecosystem-ci/actions/runs/17966798046) |
|-------|--------|----------------|
| language-tools | :white_check_mark: [success](https://github.com/vuejs/ecosystem-ci... | 2025-09-24T06:04:52 | 2025-09-24T06:04:52 | {} | CONTRIBUTOR |
vuejs | core | 3,254,084,567 | 13,848 | pkg-pr-new[bot] |
[Open in StackBlitz](https://pkg.pr.new/template/775f31ee-a279-4e15-a826-a072ef0545aa)
<details><summary><b>@vue/compiler-core</b></summary><p>
```
npm i https://pkg.pr.new/@vue/compiler-core@13848
```
</p></details>
<details><summary><b>@vue/compiler-dom</b></summary><p>
```
npm i https://pkg.pr.new... | 2025-09-04T14:46:38 | 2025-09-24T09:10:29 | {} | NONE |
vuejs | core | 3,289,884,881 | 12,416 | GrantGryczan | @skirtles-code The intended behavior seems to be that the compiler always scopes the deepest part of the selector. So in `:global(x) y z`, `z` would be scoped. This makes sense because the deepest selector directly represents the element actually being selected, so that's the element that should be scoped. Note that th... | 2025-09-14T20:48:24 | 2025-09-23T10:04:21 | {} | NONE |
vuejs | core | 3,327,154,295 | 9,675 | mtorromeo | I just noticed that the `onToggle` event that has since been added to `DetailsHTMLAttributes` but [MDN defines it as a `HTMLElement` event](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/toggle_event). It should probably be removed from `DetailsHTMLAttributes`. | 2025-09-24T08:18:00 | 2025-09-24T08:18:19 | {} | CONTRIBUTOR |
vuejs | core | 3,327,498,990 | 9,675 | edison1105 | /ecosystem-ci run | 2025-09-24T09:47:41 | 2025-09-24T09:47:41 | {
"+1": 1
} | MEMBER |
vuejs | core | 3,322,538,246 | 13,861 | netlify[bot] | ### <span aria-hidden="true">❌</span> Deploy Preview for *vue-sfc-playground* failed. **[Why did it fail? →](https://app.netlify.com/projects/vue-sfc-playground/deploys/68d2375cdbe1320008f84f7d?deploy_diagnostics=true)**
| Name | Link |
|:-:|------------------------|
|<span aria-hidden="true">🔨</span> Latest commit... | 2025-09-23T05:59:22 | 2025-09-23T06:04:26 | {} | NONE |
vuejs | core | 3,322,569,741 | 13,908 | netlify[bot] | ### <span aria-hidden="true">❌</span> Deploy Preview for *vue-sfc-playground* failed. **[Why did it fail? →](https://app.netlify.com/projects/vue-sfc-playground/deploys/68d2439b29565a000820be83?deploy_diagnostics=true)**
| Name | Link |
|:-:|------------------------|
|<span aria-hidden="true">🔨</span> Latest commit... | 2025-09-23T06:14:26 | 2025-09-23T06:55:12 | {} | NONE |
vuejs | core | 3,325,430,757 | 6,854 | rchl | Annotating `items` object with `PropType` type is not really correct. The `PropType`, as the name suggests, is a type for the `type` property. | 2025-09-23T20:25:55 | 2025-09-23T20:25:55 | {} | NONE |
vuejs | core | 3,327,525,747 | 9,675 | vue-bot |
📝 Ran ecosystem CI: [Open](https://github.com//vuejs/ecosystem-ci/actions/runs/17972928229)
| suite | result | [latest scheduled](https://github.com/vuejs/ecosystem-ci/actions/runs/17966798046) |
|-------|--------|----------------|
| language-tools | :white_check_mark: [success](https://github.com/vuejs/ecosystem-ci... | 2025-09-24T09:55:14 | 2025-09-24T09:55:14 | {} | CONTRIBUTOR |
vuejs | core | 3,096,116,608 | 13,675 | pkg-pr-new[bot] |
[Open in StackBlitz](https://pkg.pr.new/template/ed23cc32-29fc-4e88-9372-fd14dd7728c0)
<details><summary><b>@vue/compiler-core</b></summary><p>
```
npm i https://pkg.pr.new/@vue/compiler-core@13675
```
</p></details>
<details><summary><b>@vue/compiler-dom</b></summary><p>
```
npm i https://pkg.pr.new... | 2025-07-21T10:35:08 | 2025-09-24T13:41:34 | {} | NONE |
vuejs | core | 3,264,284,084 | 13,856 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| -------------------------- | ------ | ------- | ------- |
| runtime-dom.global.prod.js | 102 kB | 38.6 kB | 34.7 kB |
| vue.global.prod.js | 160 kB | 58.7 kB | 52.3 kB |
### Usages
| Name | Size | G... | 2025-09-08T01:29:32 | 2025-09-24T13:44:25 | {} | NONE |
vuejs | core | 3,333,088,855 | 13,924 | benjamin-larsen | I have now added your suggestions. | 2025-09-25T09:29:15 | 2025-09-25T09:29:15 | {} | NONE |
vuejs | core | 3,322,180,242 | 12,965 | edison1105 | Strictly speaking, this PR should be considered a feature, but since it's relatively simple, We plan to merge it into the next patch version. However, this change requires updating the documentation at https://vuejs.org/api/custom-elements.html#definecustomelement, where we need to add the new `shadowRootOptions` to th... | 2025-09-23T02:53:50 | 2025-09-23T02:53:50 | {} | MEMBER |
vuejs | core | 3,317,482,497 | 13,908 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| --------------------------- | ------------------- | ------------------- | ------------------- |
| compiler-dom.global.prod.js | 84 kB | 29.8 kB | 26.3 kB ... | 2025-09-22T08:10:34 | 2025-09-23T07:01:04 | {} | NONE |
vuejs | core | 3,324,222,104 | 13,919 | coderabbitai[bot] | <!-- This is an auto-generated comment: summarize by coderabbit.ai -->
<!-- This is an auto-generated comment: skip review by coderabbit.ai -->
> [!IMPORTANT]
> ## Review skipped
>
> Auto reviews are disabled on base/target branches other than the default branch.
>
>
>
> Please check the settings in the CodeRabbit... | 2025-09-23T14:18:11 | 2025-09-23T14:18:11 | {} | NONE |
vuejs | core | 3,324,225,809 | 13,919 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| --------------------------- | ------ | ------- | ------- |
| compiler-dom.global.prod.js | 84 kB | 29.8 kB | 26.3 kB |
| runtime-dom.global.prod.js | 104 kB | 39.1 kB | 35.3 kB |
| vue.global.prod.js | 162 kB | 59.3 k... | 2025-09-23T14:19:08 | 2025-09-23T14:19:08 | {} | NONE |
vuejs | core | 3,326,286,159 | 13,918 | ArthurDarkstone | > Thanks for the PR. Could you please fix the failing test?
sry, there was a return type error, fixed it ! | 2025-09-24T03:16:20 | 2025-09-24T03:16:20 | {} | CONTRIBUTOR |
vuejs | core | 3,327,140,311 | 9,675 | mtorromeo | @edison1105 done, thanks | 2025-09-24T08:13:43 | 2025-09-24T08:13:43 | {} | CONTRIBUTOR |
vuejs | core | 3,327,358,360 | 13,848 | edison1105 | /ecosystem-ci run | 2025-09-24T09:12:58 | 2025-09-24T09:12:58 | {
"+1": 1
} | MEMBER |
vuejs | core | 3,327,237,615 | 9,675 | pkg-pr-new[bot] |
[Open in StackBlitz](https://pkg.pr.new/template/72b7679a-93db-4fda-8229-29462cdb2284)
<details><summary><b>@vue/compiler-core</b></summary><p>
```
npm i https://pkg.pr.new/@vue/compiler-core@9675
```
</p></details>
<details><summary><b>@vue/compiler-dom</b></summary><p>
```
npm i https://pkg.pr.new/... | 2025-09-24T08:40:43 | 2025-09-24T09:45:02 | {} | NONE |
vuejs | core | 3,331,952,804 | 13,926 | pkg-pr-new[bot] |
[Open in StackBlitz](https://pkg.pr.new/template/8ddbffde-6580-43b6-9260-13d7ad2aafec)
<details><summary><b>@vue/compiler-core</b></summary><p>
```
npm i https://pkg.pr.new/@vue/compiler-core@13926
```
</p></details>
<details><summary><b>@vue/compiler-dom</b></summary><p>
```
npm i https://pkg.pr.new... | 2025-09-25T03:29:43 | 2025-09-25T08:28:34 | {} | NONE |
vuejs | core | 3,322,083,742 | 13,758 | pkg-pr-new[bot] |
[Open in StackBlitz](https://pkg.pr.new/template/36d6a791-5635-4fed-b6ec-334e14c53876)
<details><summary><b>@vue/compiler-core</b></summary><p>
```
npm i https://pkg.pr.new/@vue/compiler-core@13758
```
</p></details>
<details><summary><b>@vue/compiler-dom</b></summary><p>
```
npm i https://pkg.pr.new... | 2025-09-23T01:43:44 | 2025-09-23T01:43:44 | {} | NONE |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.