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,857,447,196 | 4,314 | onurusluca | Any update on this? I want the user to be able to change the styling of my custom element with their CSS, but with shadow DOM it doesn't seem to be possible? | 2023-12-15T08:05:14 | 2023-12-15T08:05:14 | {} | NONE |
vuejs | core | 1,849,195,883 | 9,802 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| -------------------------- | ------ | ------- | ------- |
| runtime-dom.global.prod.js | 87 kB | 33.1 kB | 29.9 kB |
| vue.global.prod.js | 133 kB | 49.9 kB | 44.7 kB |
### Usages
| Name | Size | Gzi... | 2023-12-11T01:41:54 | 2023-12-11T01:41:54 | {} | NONE |
vuejs | core | 1,849,238,085 | 9,804 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| -------------------------- | ------ | ------- | ------- |
| runtime-dom.global.prod.js | 87 kB | 33.1 kB | 29.9 kB |
| vue.global.prod.js | 133 kB | 49.9 kB | 44.7 kB |
### Usages
| Name | Size | Gzi... | 2023-12-11T02:44:47 | 2023-12-11T02:44:47 | {} | NONE |
vuejs | core | 1,849,238,653 | 9,805 | codspeed-hq[bot] | ## [CodSpeed Performance Report](https://codspeed.io/vuejs/core/branches/renovate/major-test)
### Merging #9805 will **improve performances by 73.57%**
<sub>Comparing <code>renovate/major-test</code> (59612ad) with <code>main</code> (4017202)</sub>
### Summary
`⚡ 1` improvements
`✅ 52` untouched benchmarks
##... | 2023-12-11T02:45:42 | 2023-12-11T02:56:52 | {} | NONE |
vuejs | core | 1,853,497,117 | 8,639 | edison1105 | /ecosystem-ci run | 2023-12-13T08:49:09 | 2023-12-13T08:49:09 | {
"+1": 1
} | MEMBER |
vuejs | core | 1,856,314,019 | 9,830 | LinusBorg | Looks like normal TS behavior to me:
https://www.typescriptlang.org/play?#code/MYewdgzgLgBAKgU2jAvDA3gKBjA1ggTwC4YByARlIBoYATJYE0gOQFcBbAIwQCcZLMAX0wAzVmGBQAluBhQkUADxwAfAAop89iTg0ADgEMe0gwBsAklpIAFIydPKVASgyYAkDwRRWPMHJ6sCEKYmKCQsHqmBlJgAOo84ADmqBh4hEyUNPQQwPFJJCJmEAjCmAD0ZXQgSGCksFAAFgkA7jC8CTyY8tBqiND6UTF5YIlOIRU... | 2023-12-14T17:45:30 | 2023-12-14T17:45:30 | {} | MEMBER |
vuejs | core | 1,857,099,633 | 9,834 | yyx990803 | This is expected behavior. An immediate watcher executes... immediately, which means it calls `getItems` before it is declared.
Either move `const getItems = ...` before the watcher or use `function getItems() { ... }` which hoists the function declaration. | 2023-12-15T00:53:59 | 2023-12-15T00:53:59 | {} | MEMBER |
vuejs | core | 1,857,503,637 | 9,839 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| -------------------------- | ------ | ------- | ------- |
| runtime-dom.global.prod.js | 87 kB | 33.1 kB | 29.9 kB |
| vue.global.prod.js | 133 kB | 50 kB | 44.8 kB |
### Usages
| Name | Size | Gzi... | 2023-12-15T08:50:08 | 2023-12-15T08:50:08 | {} | NONE |
vuejs | core | 1,849,233,670 | 9,788 | yyx990803 | /ecosystem-ci run | 2023-12-11T02:38:24 | 2023-12-11T02:38:24 | {
"+1": 1
} | MEMBER |
vuejs | core | 1,849,688,043 | 9,781 | LarryZhu-dev | @edison1105 我这能复现的

我在mapbox的popup的setHTML方法中append一个元素,然后用render再挂载一个到popup的元素上,popup remove时,被挂载的元素没有释放,我在mapbox也提了issue了,人家让我找vue😂https://github.com/mapbox/mapbox-gl-js/issues/12954 | 2023-12-11T09:48:18 | 2023-12-11T09:49:07 | {} | NONE |
vuejs | core | 1,849,807,370 | 8,946 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| -------------------------- | ------- | ------- | ------- |
| runtime-dom.global.prod.js | 86.9 kB | 33.1 kB | 29.9 kB |
| vue.global.prod.js | 133 kB | 49.9 kB | 44.7 kB |
### Usages
| Name | Size |... | 2023-12-11T10:46:44 | 2023-12-11T10:46:44 | {} | NONE |
vuejs | core | 1,851,670,384 | 9,811 | LinusBorg | the relative path you are using is messing it up, as it will point to different copies of vue for your project and the nested node:_modules dir in the pinia package.
```js
import { defineConfig } from 'vite';
import { fileURLToPath } from 'url';
import vue from '@vitejs/plugin-vue';
// https://vitejs.dev/confi... | 2023-12-12T09:45:03 | 2023-12-12T09:45:28 | {} | MEMBER |
vuejs | core | 1,857,383,314 | 6,387 | edison1105 | this is the expected behavior. | 2023-12-15T07:09:46 | 2023-12-15T07:09:46 | {} | MEMBER |
vuejs | core | 1,849,241,908 | 9,800 | netlify[bot] | ### <span aria-hidden="true">❌</span> Deploy Preview for *vue-sfc-playground* failed.
| Name | Link |
|:-:|------------------------|
|<span aria-hidden="true">🔨</span> Latest commit | 2993144f46dfa5a6e558484b655dd2806e9fe30b |
|<span aria-hidden="true">🔍</span> Latest deploy log | https://app.netlify.com/sites/vue... | 2023-12-11T02:50:28 | 2023-12-11T02:50:28 | {} | NONE |
vuejs | core | 1,848,007,860 | 9,788 | codspeed-hq[bot] | ## [CodSpeed Performance Report](https://codspeed.io/vuejs/core/branches/Alfred-Skyblue:types/eimts-simplify)
### Merging #9788 will **not alter performance**
<sub>Comparing <code>Alfred-Skyblue:types/eimts-simplify</code> (b133c8c) with <code>main</code> (60415b5)</sub>
### Summary
`✅ 53` untouched benchmarks
... | 2023-12-09T00:33:30 | 2023-12-11T07:25:09 | {} | NONE |
vuejs | core | 1,705,619,598 | 9,129 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| -------------------------- | ------- | ------- | ------- |
| runtime-dom.global.prod.js | 86.9 kB | 33.1 kB | 29.9 kB |
| vue.global.prod.js | 133 kB | 49.9 kB | 44.7 kB |
### Usages
| Name | Size |... | 2023-09-04T18:52:55 | 2023-12-11T14:14:28 | {} | NONE |
vuejs | core | 1,849,761,235 | 9,129 | codspeed-hq[bot] | ## [CodSpeed Performance Report](https://codspeed.io/vuejs/core/branches/Mini-ghost:type/support-date-type)
### Merging #9129 will **improve performances by 63.31%**
<sub>Comparing <code>Mini-ghost:type/support-date-type</code> (57dc127) with <code>main</code> (9d1ca32)</sub>
### Summary
`⚡ 1` improvements
`✅ 52`... | 2023-12-11T10:27:18 | 2023-12-11T14:15:31 | {} | NONE |
vuejs | core | 1,851,717,108 | 9,811 | sadeghbarati | In some case if you want to use Vue template syntax inside Laravel (blade/php) you can check this stackblitz
https://stackblitz.com/edit/vitejs-vite-pg6azb?file=src%2FApp.vue
| 2023-12-12T10:02:57 | 2023-12-12T10:02:57 | {} | NONE |
vuejs | core | 1,853,516,119 | 9,607 | edison1105 | /ecosystem-ci run | 2023-12-13T09:02:21 | 2023-12-13T09:02:21 | {
"+1": 1
} | MEMBER |
vuejs | core | 1,857,572,836 | 7,914 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| -------------------------- | ------ | ------- | ------- |
| runtime-dom.global.prod.js | 87 kB | 33.1 kB | 29.9 kB |
| vue.global.prod.js | 133 kB | 50 kB | 44.8 kB |
### Usages
| Name | Size | Gzi... | 2023-12-15T09:43:11 | 2023-12-15T09:43:11 | {} | NONE |
vuejs | core | 1,849,286,619 | 9,808 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| -------------------------- | ------------------ | ------------------- | ------------------- |
| runtime-dom.global.prod.js | 87 kB | 33.1 kB | 29.9 kB |
| v... | 2023-12-11T03:59:31 | 2023-12-11T03:59:31 | {} | NONE |
vuejs | core | 1,849,287,451 | 9,808 | codspeed-hq[bot] | ## [CodSpeed Performance Report](https://codspeed.io/vuejs/core/branches/zh-lx:feat-rawtext-tag)
### Merging #9808 will **not alter performance**
<sub>Comparing <code>zh-lx:feat-rawtext-tag</code> (1f22de8) with <code>main</code> (4017202)</sub>
### Summary
`✅ 53` untouched benchmarks
| 2023-12-11T04:00:46 | 2023-12-11T04:00:46 | {} | NONE |
vuejs | core | 1,849,309,891 | 9,808 | Justineo | Thank you for the contribution but is by design that we don't support obsolete tags. | 2023-12-11T04:32:37 | 2023-12-11T04:32:37 | {} | MEMBER |
vuejs | core | 1,849,861,518 | 9,796 | pikax | The runtime type
> and wrote a test:
>
> ```ts
> describe('unwraps nested refs', () => {
> const x = ref({
> a: ref({
> b: ref(0)
> })
> })
>
> expectType<number>(x.value.a.b)
> })
> ```
That type is already correct without any changes to the current code, please confirm on ... | 2023-12-11T11:14:17 | 2023-12-11T11:14:17 | {} | MEMBER |
vuejs | core | 1,853,508,402 | 8,639 | vue-bot |
📝 Ran ecosystem CI: [Open](https://github.com//vuejs/ecosystem-ci/actions/runs/7192790249)
| suite | result | [latest scheduled](https://github.com/vuejs/ecosystem-ci/actions/runs/7190931837) |
|-------|--------|----------------|
| language-tools | :x: [failure](https://github.com/vuejs/ecosystem-ci/actions/runs/719... | 2023-12-13T08:56:56 | 2023-12-13T08:56:56 | {} | CONTRIBUTOR |
vuejs | core | 1,849,193,732 | 9,801 | codspeed-hq[bot] | ## [CodSpeed Performance Report](https://codspeed.io/vuejs/core/branches/zh-lx:fix-preserve-tab)
### Merging #9801 will **not alter performance**
<sub>Comparing <code>zh-lx:fix-preserve-tab</code> (9d4f7d4) with <code>main</code> (60415b5)</sub>
### Summary
`✅ 53` untouched benchmarks
| 2023-12-11T01:38:35 | 2023-12-11T01:38:35 | {} | NONE |
vuejs | core | 1,849,194,754 | 9,803 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| -------------------------- | ------ | ------- | ------- |
| runtime-dom.global.prod.js | 87 kB | 33.1 kB | 29.9 kB |
| vue.global.prod.js | 133 kB | 49.9 kB | 44.7 kB |
### Usages
| Name | Size | Gzi... | 2023-12-11T01:40:09 | 2023-12-11T01:40:09 | {} | NONE |
vuejs | core | 1,849,864,136 | 9,781 | Justineo | 如 @Alfred-Skyblue 所说,你需要先卸载 Vue app 再移除 DOM 元素,这并非 Vue 的问题。 | 2023-12-11T11:16:06 | 2023-12-11T11:16:06 | {} | MEMBER |
vuejs | core | 1,851,194,326 | 9,812 | Simon-He95 | @leoelz [usage](https://play.vuejs.org/#eNqNU01vEzEQ/SuWhbSNlNhI6SmkVQBFAg6AgBvmsN2dJG7XH7Jn06Aq/52xnabbkCJuHr/xzJvneQ/8rfdi2wOf8XlsgvbIImDvr5XVxruA7L0znq2CM6wSMgUpvVJW2VVvG9TOMtiCxQ+1bTsIFzkYsQdlWQEE1mENKCL+7kA0rnOBXbFqHQBs9UbZvbJzWXpTVwoQjO9qBIoYm+f+i+gMTHK5K8WH/RRnkhLncvCKj3khPzG1F7fRWRovE1IHICo+KxTTHQ2UYsU3iD7OpGxa... | 2023-12-12T02:14:59 | 2023-12-12T02:14:59 | {} | CONTRIBUTOR |
vuejs | core | 1,855,437,855 | 8,898 | roojay | same problem: [element-plus#15145](https://github.com/element-plus/element-plus/issues/15145) | 2023-12-14T08:57:54 | 2023-12-14T08:57:54 | {
"+1": 1
} | NONE |
vuejs | core | 1,855,341,929 | 6,548 | codspeed-hq[bot] | ## [CodSpeed Performance Report](https://codspeed.io/vuejs/core/branches/edison1105:feat/5836)
### Merging #6548 will **not alter performance**
<sub>Comparing <code>edison1105:feat/5836</code> (fa10978) with <code>main</code> (a6503e3)</sub>
### Summary
`✅ 53` untouched benchmarks
| 2023-12-14T07:48:32 | 2023-12-14T09:52:29 | {} | NONE |
vuejs | core | 1,857,385,578 | 9,451 | jd-solanki | @zhiyuanzmj What's `.value="value"`? I never seen this in VueJS docs? 🤔 | 2023-12-15T07:12:03 | 2023-12-15T07:12:03 | {
"+1": 1,
"laugh": 2
} | NONE |
vuejs | core | 1,849,139,600 | 9,637 | codspeed-hq[bot] | ## [CodSpeed Performance Report](https://codspeed.io/vuejs/core/branches/renovate/test)
### Merging #9637 will **not alter performance**
<sub>:warning: No base runs were found</sub>
<sub>Falling back to comparing <code>renovate/test</code> (dfc3a7e) with <code>main</code> (60415b5)</sub>
### Summary
`✅ 53` untou... | 2023-12-11T00:11:18 | 2023-12-11T00:11:18 | {} | NONE |
vuejs | core | 1,849,621,463 | 9,786 | edison1105 | duplicate of https://github.com/vuejs/core/issues/6123 | 2023-12-11T09:16:11 | 2023-12-11T09:16:11 | {} | MEMBER |
vuejs | core | 1,849,905,312 | 9,774 | pikax | > like this [online demo](https://play.vuejs.org/#eNqtVF9r2zAQ/yo3PSwdpDGlb54b2EZh28Na1kBf9KLZZ8edLAlJTlJCvvtOcv0nYenYGBgs3f3u7nd/dHv2wZjFpkWWsszltjYeHPrWgBSquuHMO86WXNWN0dbDHiyW89udtyL391ab1bNBBwcorW5gRn5mXOVaOQ8eXUQ4uIE9VwAijT8ATzYpPHhbqypIDlzRx1WQw2pidhonCwhdjq6JWIFlrTDessF2efEuOOyINK4iX8T7YvYZpdTwqK0s3swIkiVdyuSHLh... | 2023-12-11T11:43:28 | 2023-12-11T11:43:41 | {} | MEMBER |
vuejs | core | 1,856,530,710 | 9,832 | LinusBorg | I think that's because we handle the template element *after* we patched the props?
| 2023-12-14T20:24:30 | 2023-12-14T20:25:55 | {
"+1": 1
} | MEMBER |
vuejs | core | 1,857,112,701 | 9,836 | yyx990803 | This is somewhat by design because `<component is="...">` can be used to render native tags or custom elements. We don't want to throw failed resolution warnings in such cases.
For static components, native tags or custom elements are already ruled out at the compilation phase so we can be sure they are resolving fo... | 2023-12-15T01:11:09 | 2023-12-15T01:11:09 | {} | MEMBER |
vuejs | core | 1,842,609,013 | 9,741 | mateenagy | Yes it was on me to forget about the description on the `:key` property on the component in the vue docs:
`Without keys, Vue uses an algorithm that minimizes element movement and tries to patch/reuse elements of the same type in-place as much as possible.`
And the it make perfect sense, but I just show a basic exa... | 2023-12-06T10:34:34 | 2023-12-06T10:34:34 | {} | NONE |
vuejs | core | 1,844,081,246 | 9,763 | yyx990803 | Thanks for the PR, but the root cause of this is that the previous logic was doing an early return and skipping the `key in el` check at the end. See 5b002869c | 2023-12-07T02:10:40 | 2023-12-07T02:10:58 | {
"+1": 1
} | MEMBER |
vuejs | core | 1,847,275,914 | 3,024 | BenShelton | This is becoming a problem for us even using Vue 3.3.10 because of how an external library generates code. More specifically https://github.com/timostamm/protobuf-ts. The code it generates uses some cases of `defineProperty` to create reflection information.
This isn't something we can easily overwrite to put `markR... | 2023-12-08T14:27:11 | 2023-12-08T14:29:11 | {
"+1": 2
} | NONE |
vuejs | core | 1,847,332,227 | 9,756 | codspeed-hq[bot] | ## [CodSpeed Performance Report](https://codspeed.io/vuejs/core/branches/Alfred-Skyblue:types/runtime-core/h-overload)
### Merging #9756 will **not alter performance**
<sub>Comparing <code>Alfred-Skyblue:types/runtime-core/h-overload</code> (6c7acca) with <code>main</code> (213eba4)</sub>
### Summary
`✅ 53` untou... | 2023-12-08T15:00:44 | 2023-12-08T15:00:44 | {} | NONE |
vuejs | core | 1,843,972,614 | 9,762 | zh-lx | I find the problem, it caused by this commit: https://github.com/vuejs/core/commit/9845f1d2a1ea8df7ae6db7ac3e012d1989fb448b. | 2023-12-07T01:13:24 | 2023-12-07T01:13:24 | {} | CONTRIBUTOR |
vuejs | core | 1,843,977,205 | 9,761 | xiaoyao980804 | > [playground](https://play.vuejs.org/#eNqtU71u2zAQfhWWi23AlRBkS2SjP8jQDm3RdOTCyidbCUUKJCUbMDS3S1+i79Y+R488S4qS1FMGAuR93x2/O3488rd1nbQN8CueudyWtWcOfFOvhS6r2ljPjsztzH4Zwre4YR0rrKnYLEnfm6q+mF0PzHCegKHwbAJfTJMjYSxwZBaK4YITJnRutPNMslWA54VUDhZCZynpRaV48FDVSnrAE2PZ98Z7o9mbXJX5/Urwk3bB139+/vj763eWEoPYJKx9HfpEskRaRvpGHOGyCJWoD... | 2023-12-07T01:19:05 | 2023-12-07T01:19:05 | {} | NONE |
vuejs | core | 1,843,987,798 | 9,763 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| -------------------------- | ------------------- | ------------------- | ------------------- |
| runtime-dom.global.prod.js | 86.7 kB (**-70 B**) | 33 kB (**-38 B**) | 29.7 kB (**-42 B**) |
... | 2023-12-07T01:28:41 | 2023-12-07T01:28:41 | {} | NONE |
vuejs | core | 1,844,524,046 | 8,989 | sxzz | Released as `plugin-vue@5.0.0-beta.0` | 2023-12-07T05:39:40 | 2023-12-07T05:39:40 | {} | MEMBER |
vuejs | core | 1,845,064,032 | 9,598 | Alfred-Skyblue | @Norfeldt `defineModel` is currently an experimental feature. It will be added to the documentation once it is elevated to stable functionality.
| 2023-12-07T10:17:01 | 2023-12-07T10:17:01 | {} | MEMBER |
vuejs | core | 1,845,221,744 | 9,771 | sinkersan | Thanks for the answer.
Yeah, i know that i can workaround this issue by using typecast.
The your version or like this:
```const reactiveMap = ref(new Map()) as Ref<Map<number, T>>;```
But my point that previously it was worked correct and doesn't required any additional actions in the code. And latest changes br... | 2023-12-07T12:03:09 | 2023-12-07T12:03:09 | {} | NONE |
vuejs | core | 1,845,226,603 | 9,772 | alpalex | Guess i misunderstood that.
Can i turn off that feature with some feature flag of some kind? It seems unnecessary because things like `:deep()` exist. | 2023-12-07T12:06:45 | 2023-12-07T12:06:45 | {} | NONE |
vuejs | core | 1,845,253,951 | 8,989 | SavkaTaras | > Released as `plugin-vue@5.0.0-beta.0`
Hello, is it possible to release 4.5.2? Thank you | 2023-12-07T12:25:47 | 2023-12-07T12:25:47 | {} | NONE |
vuejs | core | 1,846,660,655 | 9,776 | baiwusanyu-c | I think this is not necessary. Transition is a built-in component and a reserved word of the compiler. You can change your own Transition to another name. | 2023-12-08T07:05:37 | 2023-12-08T07:05:37 | {
"+1": 2
} | MEMBER |
vuejs | core | 1,846,725,597 | 7,108 | vue-bot |
📝 Ran ecosystem CI: [Open](https://github.com//vuejs/ecosystem-ci/actions/runs/7138778608)
| suite | result | [latest scheduled](https://github.com/vuejs/ecosystem-ci/actions/runs/7137568429) |
|-------|--------|----------------|
| language-tools | :x: [failure](https://github.com/vuejs/ecosystem-ci/actions/runs/713... | 2023-12-08T07:59:24 | 2023-12-08T07:59:24 | {} | CONTRIBUTOR |
vuejs | core | 1,686,359,383 | 8,674 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| -------------------------- | ------- | ------- | ------- |
| runtime-dom.global.prod.js | 86.7 kB | 33 kB | 29.8 kB |
| vue.global.prod.js | 133 kB | 49.8 kB | 44.7 kB |
### Usages
| Name | Size |... | 2023-08-21T13:44:02 | 2023-12-06T15:52:57 | {} | NONE |
vuejs | core | 1,844,041,828 | 9,762 | yyx990803 | > I find the problem, it caused by this commit: [9845f1d](https://github.com/vuejs/core/commit/9845f1d2a1ea8df7ae6db7ac3e012d1989fb448b).
No, this condition was already fixed in https://github.com/vuejs/core/commit/6fcec3b2c71ec86f1be54f587d4e7dfb107debb7 | 2023-12-07T01:55:19 | 2023-12-07T01:55:19 | {} | MEMBER |
vuejs | core | 1,844,065,579 | 9,697 | yyx990803 | Vue is following the spec here.
- `r.value.setAttribute('has', true)` -> invalid for a boolean attribute, so casted as string `"true"`
- `r.value.setAttribute('has', '')` OR ``r.value.setAttribute('has', 'has')`` -> valid for a boolean attribute, converted into boolean `true` and working as expected.
- `r.value.ha... | 2023-12-07T02:03:24 | 2023-12-07T02:03:24 | {} | MEMBER |
vuejs | core | 1,844,225,814 | 9,761 | xiaoyao980804 | > This is expected behavior, because watchers by default fire **before** render updates: https://vuejs.org/guide/essentials/watchers.html#callback-flush-timing
>
> If you don't want it to fire, use a post-flush watcher.
In the example code, Is inconsistent performance between using and not using v-show an expecte... | 2023-12-07T03:51:20 | 2023-12-07T03:51:20 | {} | NONE |
vuejs | core | 1,845,250,430 | 9,772 | Alfred-Skyblue | https://vuejs.org/guide/components/attrs.html#class-and-style-merging
This feature cannot be turned off, this is related to class inheritance. If we use a class within a component, it will be bound to the root element of the child component. It can still utilize styles scoped in the parent component.
```html
<te... | 2023-12-07T12:23:36 | 2023-12-07T12:23:36 | {
"+1": 1
} | MEMBER |
vuejs | core | 1,846,422,807 | 9,761 | edison1105 | The root cause is the same as #7030 (**when a component rerenders, it should only trigger the watchers that are relevant to it**) and will be fixed by https://github.com/vuejs/core/pull/7181.
see https://deploy-preview-7181--vue-sfc-playground.netlify.app/#eNqtU0tu2zAQvQrLjRzAlRBkl8pGP8iiXbRF0yU3jDySlVCkwI9swNC63fQS... | 2023-12-08T01:37:11 | 2023-12-08T01:43:38 | {} | MEMBER |
vuejs | core | 1,848,328,683 | 4,339 | coader | +1 | 2023-12-09T08:42:34 | 2023-12-09T08:42:34 | {} | NONE |
vuejs | core | 1,849,088,636 | 9,676 | michealroberts | Invite has been sent. Probably best to double check your email. | 2023-12-10T21:20:48 | 2023-12-10T21:20:48 | {} | NONE |
vuejs | core | 1,845,043,523 | 9,598 | Norfeldt | don't see defineModel in the docs. https://vuejs.org/guide/components/v-model.html | 2023-12-07T10:03:29 | 2023-12-07T10:03:29 | {} | NONE |
vuejs | core | 1,845,287,499 | 8,989 | sxzz | Released as `plugin-vue@4.5.2` too | 2023-12-07T12:50:29 | 2023-12-07T12:50:29 | {
"heart": 1
} | MEMBER |
vuejs | core | 1,845,911,595 | 8,987 | LinusBorg | that's because we haven't had a new patch release for Vue since we merged #8989
the changes in the vite plugin are a prerequisite for that. | 2023-12-07T18:40:39 | 2023-12-07T18:40:39 | {
"+1": 2
} | MEMBER |
vuejs | core | 1,846,636,759 | 9,691 | GabrielHangor | Can make a PR... | 2023-12-08T06:54:49 | 2023-12-08T06:55:03 | {} | NONE |
vuejs | core | 1,847,338,746 | 7,188 | netlify[bot] | ### <span aria-hidden="true">❌</span> Deploy Preview for *vue-next-template-explorer* failed.
| Name | Link |
|:-:|------------------------|
|<span aria-hidden="true">🔨</span> Latest commit | 4fa7ed33312a4c3ebda8b2acc56d5986fd0439f8 |
|<span aria-hidden="true">🔍</span> Latest deploy log | https://app.netlify.com/s... | 2023-12-08T15:05:07 | 2023-12-08T15:05:07 | {} | NONE |
vuejs | core | 1,848,006,906 | 9,788 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| -------------------------- | ------ | ------- | ------- |
| runtime-dom.global.prod.js | 87 kB | 33.1 kB | 29.9 kB |
| vue.global.prod.js | 133 kB | 49.9 kB | 44.7 kB |
### Usages
| Name | Size | Gzi... | 2023-12-09T00:32:12 | 2023-12-09T00:32:12 | {} | NONE |
vuejs | core | 1,848,363,430 | 9,791 | LinusBorg | We can't debug deloyed productuon apps | 2023-12-09T10:22:49 | 2023-12-09T10:22:49 | {} | MEMBER |
vuejs | core | 1,848,451,467 | 9,794 | adriencaccia | Hey @sxzz, I investigated the detected performance regression, it seems that the following function https://github.com/vuejs/core/blob/e9e2778e9ec5cca07c1df5f0c9b7b3595a1a3244/packages/reactivity/src/effect.ts#L393
is a bit flaky in how much work it is doing during this specific bench:
. | 2023-12-10T07:54:52 | 2023-12-10T07:54:52 | {
"+1": 1
} | MEMBER |
vuejs | core | 1,842,122,829 | 9,759 | baiwusanyu-c | As Alfred stated | 2023-12-06T05:39:25 | 2023-12-06T05:39:25 | {} | MEMBER |
vuejs | core | 1,844,134,312 | 9,761 | yyx990803 | This is expected behavior, because watchers by default fire **before** render updates: https://vuejs.org/guide/essentials/watchers.html#callback-flush-timing
If you don't want it to fire, use a post-flush watcher. | 2023-12-07T02:51:05 | 2023-12-07T02:51:05 | {} | MEMBER |
vuejs | core | 1,844,656,444 | 9,768 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| -------------------------- | ------- | ------- | ------- |
| runtime-dom.global.prod.js | 86.9 kB | 33 kB | 29.8 kB |
| vue.global.prod.js | 133 kB | 49.9 kB | 44.7 kB |
### Usages
| Name | Size |... | 2023-12-07T06:04:03 | 2023-12-07T06:04:03 | {} | NONE |
vuejs | core | 1,812,723,239 | 9,607 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| -------------------------- | ------------------ | ------------------- | ------------------ |
| runtime-dom.global.prod.js | 87 kB (**+42 B**) | 33.1 kB (**+14 B**) | 29.9 kB (**-8 B**) |
| vue.... | 2023-11-15T15:14:22 | 2023-12-08T07:07:35 | {} | NONE |
vuejs | core | 1,818,263,464 | 9,638 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| -------------------------- | ------ | ------- | ------- |
| runtime-dom.global.prod.js | 87 kB | 33.1 kB | 29.9 kB |
| vue.global.prod.js | 133 kB | 49.9 kB | 44.8 kB |
### Usages
| Name | Size | Gzi... | 2023-11-20T05:41:27 | 2023-12-08T10:16:49 | {} | NONE |
vuejs | core | 1,847,340,910 | 7,188 | codspeed-hq[bot] | ## [CodSpeed Performance Report](https://codspeed.io/vuejs/core/branches/edison1105:fix/7180)
### Merging #7188 will **not alter performance**
<sub>Comparing <code>edison1105:fix/7180</code> (b00edb8) with <code>main</code> (213eba4)</sub>
### Summary
`✅ 53` untouched benchmarks
| 2023-12-08T15:06:29 | 2023-12-08T15:08:06 | {} | NONE |
vuejs | core | 1,849,064,848 | 9,676 | LinusBorg | that link is still a 404 for me (not public) | 2023-12-10T19:53:09 | 2023-12-10T19:53:09 | {} | MEMBER |
vuejs | core | 1,844,139,651 | 8,989 | yyx990803 | @sxzz looks like this will need to merge and publish the corresponding changes in the Vite plugin, I'll leave that to you | 2023-12-07T02:53:42 | 2023-12-07T02:53:42 | {
"rocket": 2
} | MEMBER |
vuejs | core | 1,846,449,502 | 9,757 | yyx990803 | /cc @pikax | 2023-12-08T02:14:36 | 2023-12-08T02:14:36 | {} | MEMBER |
vuejs | core | 1,840,829,251 | 9,756 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| -------------------------- | ------ | ------- | ------- |
| runtime-dom.global.prod.js | 87 kB | 33.1 kB | 29.9 kB |
| vue.global.prod.js | 133 kB | 49.9 kB | 44.8 kB |
### Usages
| Name | Size | Gzi... | 2023-12-05T13:48:51 | 2023-12-08T06:21:28 | {} | NONE |
vuejs | core | 1,750,436,764 | 8,374 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| -------------------------- | ------ | ------- | ------- |
| runtime-dom.global.prod.js | 87 kB | 33.1 kB | 29.9 kB |
| vue.global.prod.js | 133 kB | 49.9 kB | 44.8 kB |
### Usages
| Name | Size | Gzi... | 2023-10-06T11:14:09 | 2023-12-08T14:31:40 | {} | NONE |
vuejs | core | 1,848,969,302 | 9,676 | michealroberts | @LinusBorg I have tried to replicate this bug here: https://stackblitz.com/edit/vitejs-vite-sfkbvh but to no luck.
The issue likely lies with my implementation of `<UseFocusTrap />` ... and maybe how it is instantiated. I still find it odd however that it works with Vue 3.3.8 but not on Vue > 3.3.9 🤔 | 2023-12-10T13:42:23 | 2023-12-10T13:42:23 | {} | NONE |
vuejs | core | 1,842,111,104 | 9,759 | Alfred-Skyblue | This behavior is expected. Within `defineModel`, the value of `modelValue` is changed through event notifications, and it is modified by the parent component. When it changes, it triggers the update of the component. Since component updates are asynchronous, you must wait until the component is updated to obtain the la... | 2023-12-06T05:26:54 | 2023-12-06T05:26:54 | {} | MEMBER |
vuejs | core | 1,843,196,490 | 9,761 | yangxiuxiu1115 | [playground](https://play.vuejs.org/#eNqtU71u2zAQfhWWi23AlRBkS2SjP8jQDm3RdOTCyidbCUUKJCUbMDS3S1+i79Y+R488S4qS1FMGAuR93x2/O3488rd1nbQN8CueudyWtWcOfFOvhS6r2ljPjsztzH4Zwre4YR0rrKnYLEnfm6q+mF0PzHCegKHwbAJfTJMjYSxwZBaK4YITJnRutPNMslWA54VUDhZCZynpRaV48FDVSnrAE2PZ98Z7o9mbXJX5/Urwk3bB139+/vj763eWEoPYJKx9HfpEskRaRvpGHOGyCJWoDOE... | 2023-12-06T16:00:41 | 2023-12-06T16:00:41 | {} | CONTRIBUTOR |
vuejs | core | 1,844,882,054 | 9,769 | yyx990803 | Most likely related to https://github.com/vuejs/core/pull/9309
/cc @edison1105 | 2023-12-07T08:27:19 | 2023-12-07T08:27:19 | {
"eyes": 1
} | MEMBER |
vuejs | core | 1,844,892,067 | 9,768 | Alfred-Skyblue | Thank you for your quick response and for adding test cases, that's awesome. | 2023-12-07T08:33:36 | 2023-12-07T08:33:36 | {} | MEMBER |
vuejs | core | 1,845,398,354 | 9,772 | alpalex | thx for taking the time! | 2023-12-07T14:03:12 | 2023-12-07T14:03:12 | {} | NONE |
vuejs | core | 1,846,670,375 | 9,776 | mhdSid | well, thanks for the quick response. Let me try it!!
This requires updating all Transition in a huge mono-repo which is quite cumbersome | 2023-12-08T07:16:52 | 2023-12-08T07:18:27 | {} | NONE |
vuejs | core | 1,848,361,076 | 9,794 | codspeed-hq[bot] | ## [CodSpeed Performance Report](https://codspeed.io/vuejs/core/branches/zhangenming:patch-39)
### Merging #9794 will **degrade performances by 42.39%**
<sub>Comparing <code>zhangenming:patch-39</code> (f4973e5) with <code>main</code> (60415b5)</sub>
### Summary
`❌ 1` regressions
`✅ 52` untouched benchmarks
> ... | 2023-12-09T10:11:46 | 2023-12-09T10:11:46 | {} | NONE |
vuejs | core | 1,848,369,723 | 9,774 | so1ve | Try [`@vue.ts/complex-types`](https://github.com/so1ve/vue.ts/tree/main/packages/complex-types) | 2023-12-09T10:53:06 | 2023-12-09T10:53:06 | {
"+1": 1
} | MEMBER |
vuejs | core | 1,842,113,751 | 9,741 | baiwusanyu-c | I'm not sure if this is a bug, but it's all explainable.
In this use case, the compiler will think that it is a stable dom structure, so it will not attach any patchFlag. However, due to the deletion of the code, the dom structure is destroyed, and during the hot update process, the render function is re-executed, so ... | 2023-12-06T05:29:47 | 2023-12-06T05:29:47 | {
"+1": 1
} | MEMBER |
vuejs | core | 1,844,084,041 | 8,674 | Alfred-Skyblue | This PR can help me refresh more conveniently in the Playground. | 2023-12-07T02:12:25 | 2023-12-07T02:12:25 | {} | MEMBER |
vuejs | core | 1,846,673,673 | 8,786 | yyx990803 | Made a few adjustments in https://github.com/vuejs/core/commit/efddf96cbb12447e228897474f22e416f02db98b:
- `importAttributes` should apply to plain JS as well, not just TS.
- Use latest `importAttributes` by default (no deprecated syntax support) now that TS 5.3 is already out.
- Users can override the internal `i... | 2023-12-08T07:20:42 | 2023-12-08T07:21:05 | {} | MEMBER |
vuejs | core | 1,846,696,497 | 8,657 | vue-bot |
📝 Ran ecosystem CI: [Open](https://github.com//vuejs/ecosystem-ci/actions/runs/7138624492)
| suite | result | [latest scheduled](https://github.com/vuejs/ecosystem-ci/actions/runs/7137568429) |
|-------|--------|----------------|
| language-tools | :x: [failure](https://github.com/vuejs/ecosystem-ci/actions/runs/713... | 2023-12-08T07:37:36 | 2023-12-08T07:37:36 | {} | CONTRIBUTOR |
vuejs | core | 1,847,338,653 | 7,188 | netlify[bot] | ### <span aria-hidden="true">❌</span> Deploy Preview for *vue-sfc-playground* failed.
| Name | Link |
|:-:|------------------------|
|<span aria-hidden="true">🔨</span> Latest commit | 4fa7ed33312a4c3ebda8b2acc56d5986fd0439f8 |
|<span aria-hidden="true">🔍</span> Latest deploy log | https://app.netlify.com/sites/vue... | 2023-12-08T15:05:04 | 2023-12-08T15:05:04 | {} | NONE |
vuejs | core | 1,820,384,057 | 8,532 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| -------------------------- | ------ | ------- | ------- |
| runtime-dom.global.prod.js | 87 kB | 33.1 kB | 29.9 kB |
| vue.global.prod.js | 133 kB | 49.9 kB | 44.7 kB |
### Usages
| Name | Size | Gzi... | 2023-11-21T07:39:41 | 2023-12-08T16:12:00 | {} | NONE |
vuejs | core | 1,846,459,768 | 9,761 | yyx990803 | Closing as duplicate of #7030 | 2023-12-08T02:30:29 | 2023-12-08T02:30:29 | {} | MEMBER |
vuejs | core | 1,848,360,667 | 9,794 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| -------------------------- | ------ | ------- | ------- |
| runtime-dom.global.prod.js | 87 kB | 33.1 kB | 29.9 kB |
| vue.global.prod.js | 133 kB | 49.9 kB | 44.7 kB |
### Usages
| Name | Size | Gzi... | 2023-12-09T10:09:53 | 2023-12-09T10:09:53 | {} | NONE |
vuejs | core | 1,849,087,298 | 9,676 | michealroberts | @LinusBorg You may have to accept an invite to the repo … | 2023-12-10T21:15:36 | 2023-12-10T21:15:36 | {} | NONE |
vuejs | core | 1,842,163,255 | 9,759 | gaokun | @Alfred-Skyblue
Thank you for response in minutes.
So `modelValue.value = xxx` is equal to `emit('update:value', xxx)` with its `setter` essentially, right?
But the code, from JS side, it looks not the same way, it is counterintuitive as mentioned in title.
It likes MagicCode.
I understand that it works as desi... | 2023-12-06T06:17:32 | 2023-12-06T06:17:32 | {} | NONE |
vuejs | core | 1,843,834,637 | 9,762 | zdm | I think it is related to this update: https://github.com/vuejs/core/pull/8781 | 2023-12-06T23:09:37 | 2023-12-06T23:09:37 | {} | NONE |
vuejs | core | 1,844,871,254 | 9,756 | haoqunjiang | The language-tools ecosystem-ci failure isn't related to this PR. | 2023-12-07T08:19:38 | 2023-12-07T08:19:38 | {} | MEMBER |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.