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,445,619,382 | 12,291 | edison1105 | @ferferga
When the input is displayed, enter some text in it, then toggle. It can be reproduced, but this is a Chrome bug. | 2024-10-30T01:19:16 | 2024-10-30T01:19:16 | {
"+1": 1
} | MEMBER |
vuejs | core | 2,445,621,279 | 12,294 | edison1105 | The reproduction link failed to load. | 2024-10-30T01:21:30 | 2024-10-30T01:21:30 | {} | MEMBER |
vuejs | core | 2,445,660,778 | 12,295 | edison1105 | this usage will get a warning in the latest version. see [Playground](https://play.vuejs.org/#eNp9U8FunDAQ/ZWRLxBpC6raE2VXbaMcWqlt1OTIhbAD68TYlm3ISoh/79iw7NJEe4N5743fPI8H9k3rpO+QZSx32GpROtwVEiDf8x4qUVq7LdgBhVAFCwBBh4+7YQBtlLZJaxsYxzyl2ow+dc4pCV8rwasXEvfc8ieBt0o6owR1sQf1Cq3alyJPJ/JJGoofHFoHBmvSVkrW3LQFg2xuc27oizO+YqaT/5... | 2024-10-30T02:00:39 | 2024-10-30T02:00:39 | {} | MEMBER |
vuejs | core | 2,445,962,943 | 12,286 | edison1105 | a workaround
```ts
// util.ts
import { markRaw as _markRaw } from 'vue'
export const markRaw = (obj: any) => _markRaw(obj)
// comp.vue
import { markRaw } from './utils'
import { toRaw } from 'vue';
export default {
data() {
return {
value1: markRaw({}),
value2: toRaw({}),
}
},
... | 2024-10-30T06:16:22 | 2024-10-30T06:16:22 | {} | MEMBER |
vuejs | core | 2,453,726,380 | 12,315 | edison1105 | duplicate of #5385
a workaround
```css
.columnsTransition .itemTransition{
transition: unset;
}
```
see [Playground](https://play.vuejs.org/#eNqdVttuGzcQ/ZXBvsQGpFVix0WxurRJEBQpkLZoA/QhGxTU7kiixSVZkivJNfzvHZJ708UJ2qcR53Jm9sxwxMfkjdbprsYkS2a2MFw7sOhqvcglr7QyDh7B4AqeYGVUBS/I9UUuc7ljBgS3zsLc268+5xLgcYsPGbwawY6J... | 2024-11-04T02:34:49 | 2024-11-04T02:39:53 | {} | MEMBER |
vuejs | core | 2,445,904,249 | 12,291 | ysswebdev | @edison1105 we don‘t need to enter some text in it, just switch. On Vue SFC Playground, you can see that it will be released after typing and switching, but it will not be released after packaging and deploying directly in the production environment. There is a difference between the two. If the form contains an input ... | 2024-10-30T05:36:34 | 2024-10-30T05:36:34 | {} | NONE |
vuejs | core | 2,446,303,978 | 11,059 | netlify[bot] | ### <span aria-hidden="true">❌</span> Deploy Preview for *vue-next-template-explorer* failed.
| Name | Link |
|:-:|------------------------|
|<span aria-hidden="true">🔨</span> Latest commit | 9f8be34bdabc902c1df1ff6076e8c01e49f9a75b |
|<span aria-hidden="true">🔍</span> Latest deploy log | https://app.netlify.com/s... | 2024-10-30T09:24:40 | 2024-10-30T09:25:35 | {} | NONE |
vuejs | core | 2,447,226,988 | 12,286 | edison1105 | This might be a TypeScript issue. using `"typescript": "~5.5.4"` does not throw an error. | 2024-10-30T13:50:09 | 2024-10-30T13:50:09 | {} | MEMBER |
vuejs | core | 2,449,207,974 | 11,086 | edison1105 | It can be reproduced in v3.4.21 but no longer be reproduced in v3.5.12 | 2024-10-31T07:31:20 | 2024-10-31T07:31:56 | {} | MEMBER |
vuejs | core | 2,449,316,862 | 10,192 | edison1105 | Closing as fixed via https://github.com/vuejs/core/pull/8304 | 2024-10-31T08:35:03 | 2024-10-31T08:35:03 | {} | MEMBER |
vuejs | core | 2,452,822,243 | 5,470 | niroula-kushal | > Could you please resolve the conflicts?
@edison1105 I guess this PR has been sitting for so long that this feature has already been implemented by another PR
https://github.com/vuejs/core/pull/11428
I guess we can close this PR. | 2024-11-02T03:00:34 | 2024-11-02T03:00:34 | {
"heart": 1
} | NONE |
vuejs | core | 2,453,694,706 | 12,302 | jh-leong | > I.e.: why does `ref<MyClass>` map to type `Ref<MyClass>`
I’m not entirely sure I understand your question. Both cases involve unwrapping, as shown in the Playground example above:
```ts
class Foo {
private foo = 1
}
const t1 = ref<Foo[]>([new Foo])
// ^ Ref<{}[]>
const t2 = ref<Foo>(new Foo)
// ... | 2024-11-04T01:49:00 | 2024-11-04T01:49:00 | {} | MEMBER |
vuejs | core | 2,453,756,346 | 12,320 | pkg-pr-new[bot] |
[Open in Stackblitz](https://pkg.pr.new/template/d3a9571a-c5de-4f6b-a837-fb13d7e3c643)
<details><summary><b>@vue/compiler-core</b></summary><p>
```
pnpm add https://pkg.pr.new/@vue/compiler-core@12320
```
</p></details>
<details><summary><b>@vue/compiler-dom</b></summary><p>
```
pnpm add https://pkg.... | 2024-11-04T03:17:49 | 2024-11-04T06:21:28 | {} | NONE |
vuejs | core | 2,443,131,555 | 12,288 | vue-bot |
📝 Ran ecosystem CI: [Open](https://github.com//vuejs/ecosystem-ci/actions/runs/11566766082)
| suite | result | [latest scheduled](https://github.com/vuejs/ecosystem-ci/actions/runs/11547651756) |
|-------|--------|----------------|
| language-tools | :white_check_mark: [success](https://github.com/vuejs/ecosystem-ci... | 2024-10-29T03:35:48 | 2024-10-29T03:35:48 | {} | CONTRIBUTOR |
vuejs | core | 2,446,304,974 | 11,059 | pkg-pr-new[bot] |
[Open in Stackblitz](https://pkg.pr.new/template/94813cbe-8245-4994-8f0a-4a276b456b30)
<details><summary><b>@vue/compiler-core</b></summary><p>
```
pnpm add https://pkg.pr.new/@vue/compiler-core@11059
```
</p></details>
<details><summary><b>@vue/compiler-dom</b></summary><p>
```
pnpm add https://pkg.... | 2024-10-30T09:25:00 | 2024-10-30T13:06:34 | {} | NONE |
vuejs | core | 2,449,349,660 | 11,038 | edison1105 | Could you please provide a minimal reproduction without any 3rd-party libs? | 2024-10-31T08:54:03 | 2024-10-31T08:54:03 | {} | MEMBER |
vuejs | core | 2,453,012,292 | 12,313 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| -------------------------- | ------ | ------- | ------- |
| runtime-dom.global.prod.js | 100 kB | 38 kB | 34.2 kB |
| vue.global.prod.js | 159 kB | 57.9 kB | 51.4 kB |
### Usages
| Name | Size | G... | 2024-11-02T14:44:41 | 2024-11-02T14:44:41 | {} | NONE |
vuejs | core | 2,453,447,354 | 12,194 | ronleeon | 同样的问题 | 2024-11-03T14:27:55 | 2024-11-03T14:27:55 | {
"+1": 1
} | NONE |
vuejs | core | 2,453,667,575 | 12,317 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| -------------------------- | ----------------- | ------- | ------------------- |
| runtime-dom.global.prod.js | 100 kB (**-5 B**) | 38 kB | 34.2 kB (**+11 B**) |
| vue.global.prod.js | 159 kB (**-... | 2024-11-04T01:04:47 | 2024-11-04T01:04:47 | {} | NONE |
vuejs | core | 2,453,756,073 | 12,319 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| -------------------------- | ------ | ------- | ------- |
| runtime-dom.global.prod.js | 100 kB | 38 kB | 34.2 kB |
| vue.global.prod.js | 159 kB | 57.9 kB | 51.4 kB |
### Usages
| Name | Size | G... | 2024-11-04T03:17:26 | 2024-11-04T03:17:26 | {} | NONE |
vuejs | core | 2,265,016,643 | 11,059 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| -------------------------- | ------------------ | ------------------ | ------------------- |
| runtime-dom.global.prod.js | 100 kB (**+31 B**) | 38 kB (**+6 B**) | 34.2 kB (**+28 B**) |
| vue.... | 2024-08-02T09:59:50 | 2024-10-30T09:25:01 | {} | NONE |
vuejs | core | 2,449,250,335 | 11,285 | KazariEX | If "the slot return type is always `VNode[]`" is expected, should we provide named tuple syntax equal to `defineEmits` for `defineSlots`? It will help us reduce code. | 2024-10-31T07:51:37 | 2024-10-31T07:51:37 | {} | MEMBER |
vuejs | core | 2,449,313,220 | 11,076 | edison1105 | The issue can no longer be reproduced locally with `"vue": "^3.5.12"` and `"vue-tsc": "^2.1.6"`.

| 2024-10-31T08:32:47 | 2024-10-31T08:32:47 | {
"eyes": 1
} | MEMBER |
vuejs | core | 2,449,487,610 | 12,299 | pkg-pr-new[bot] |
[Open in Stackblitz](https://pkg.pr.new/template/c6945384-cc8f-4bb6-a60a-647234e8f595)
<details><summary><b>@vue/compiler-core</b></summary><p>
```
pnpm add https://pkg.pr.new/@vue/compiler-core@12299
```
</p></details>
<details><summary><b>@vue/compiler-dom</b></summary><p>
```
pnpm add https://pkg.... | 2024-10-31T10:07:09 | 2024-10-31T12:44:18 | {} | NONE |
vuejs | core | 2,451,142,858 | 11,018 | edison1105 | Thank you for reporting this issue. this problem is caused by importing `watch` from another library instead of from Vue. Please ensure you correctly import `watch` from Vue:
```ts
import { watch } from 'vue';
```
Since this issue is due to an incorrect import, we are closing it. If you have any further questions o... | 2024-11-01T01:51:13 | 2024-11-01T01:51:13 | {} | MEMBER |
vuejs | core | 2,451,161,271 | 12,302 | jh-leong | Closing as a duplicate of #2981. As a workaround, see: https://github.com/vuejs/core/issues/2981#issuecomment-1831724017 | 2024-11-01T02:10:29 | 2024-11-01T02:10:29 | {} | MEMBER |
vuejs | core | 2,451,940,497 | 12,307 | DrWarpMan | Okay, now that I see it, it seems pretty straightforward, but I wonder if this should be mentioned somewhere in the docs?
In any case, the issue can be closed. | 2024-11-01T14:11:56 | 2024-11-01T14:11:56 | {} | NONE |
vuejs | core | 2,453,677,614 | 12,302 | ludwig801 | > From what I understand, the limitation on unwrapping private fields is still present: [Playground](https://play.vuejs.org/#eNqNU1Fr2zAQ/isXvSSFzlka9hKcwDY6tj1sYxvsIQrDOGdbrSwJSXZSjP/7ToqdNaV0A2Oku+87fd/p1LG3xiRtg2zFUpdbYTw49I0BmalyzZl3nG24ErXR1kMHFgvoobC6hinRplxxlWvlPNSuhHXIz6YfUUoNv7SV+8n0KkA6rgBymTkHH7SGuAUwVrSZRyg... | 2024-11-04T01:21:33 | 2024-11-04T01:22:04 | {
"+1": 1
} | NONE |
vuejs | core | 2,444,832,180 | 12,294 | maxbogue | A co-worker of mine discovered that it behaves correctly with `shallowRef` in place of `ref`. That surprises me since I didn't think those would behave differently for primitives, but it's also unhelpful as the boolean I'm working with in real code is the result of a `computed`. | 2024-10-29T16:50:56 | 2024-10-29T16:50:56 | {} | NONE |
vuejs | core | 2,446,158,615 | 12,291 | edison1105 | Not sure.
Strictly speaking, this Chrome bug retains the last interacted input but prevents the entire component instance from being released.
see https://issues.chromium.org/issues/342247579 | 2024-10-30T08:22:29 | 2024-10-30T08:22:29 | {} | MEMBER |
vuejs | core | 2,446,305,812 | 11,059 | netlify[bot] | ### <span aria-hidden="true">❌</span> Deploy Preview for *vue-sfc-playground* failed.
| Name | Link |
|:-:|------------------------|
|<span aria-hidden="true">🔨</span> Latest commit | 7e68aeb39f5997f2c55dffe619961ee1d9759880 |
|<span aria-hidden="true">🔍</span> Latest deploy log | https://app.netlify.com/sites/vue... | 2024-10-30T09:25:06 | 2024-10-30T09:25:06 | {} | NONE |
vuejs | core | 2,446,309,495 | 11,059 | netlify[bot] | ### <span aria-hidden="true">❌</span> Deploy Preview for *vue-sfc-playground* failed.
| Name | Link |
|:-:|------------------------|
|<span aria-hidden="true">🔨</span> Latest commit | 9f8be34bdabc902c1df1ff6076e8c01e49f9a75b |
|<span aria-hidden="true">🔍</span> Latest deploy log | https://app.netlify.com/sites/vue... | 2024-10-30T09:26:19 | 2024-10-30T09:26:19 | {} | NONE |
vuejs | core | 2,447,373,451 | 11,788 | edison1105 | @Artem-Schander It has been released since v3.5.1 | 2024-10-30T14:39:14 | 2024-10-30T14:39:14 | {
"hooray": 1
} | MEMBER |
vuejs | core | 2,449,295,810 | 12,287 | Mefinst | Excuse me, I made a little mistake in the example. We bundle our app as a single JS file for microfrontends which applies all styles as ```adoptedStylesheets``` to the shadow root.
There is updated example, where I copy all styles from ```style``` tags and ```link[rel="stylesheet"]``` tags into the shadow tree as we... | 2024-10-31T08:22:00 | 2024-10-31T08:26:31 | {
"+1": 1
} | NONE |
vuejs | core | 2,451,936,289 | 12,307 | edison1105 | For generic components, you need to specify the type; there is no way to infer it automatically. | 2024-11-01T14:09:22 | 2024-11-01T14:09:22 | {} | MEMBER |
vuejs | core | 2,452,399,881 | 12,309 | mefcorvi | Currently, in the case with the custom directive, this branch is triggered, adding an entry to rawChildrenMap:
https://github.com/vuejs/core/blob/664d2e553d8622bbdeae6bc02836233f6113eb4e/packages/compiler-ssr/src/transforms/ssrTransformElement.ts#L166-L185
The v-html directive works correctly because it overrides... | 2024-11-01T18:40:04 | 2024-11-01T18:41:21 | {} | CONTRIBUTOR |
vuejs | core | 2,452,963,764 | 12,110 | KazariEX | Workaround: https://github.com/vuejs/core/issues/12012#issuecomment-2452963489 | 2024-11-02T11:45:38 | 2024-11-02T11:45:38 | {} | MEMBER |
vuejs | core | 2,587,182,102 | 12,697 | pkg-pr-new[bot] |
[Open in Stackblitz](https://pkg.pr.new/template/8228a95f-b3d5-46a5-a66f-7b117eecfed7)
<details><summary><b>@vue/compiler-core</b></summary><p>
```
npm i https://pkg.pr.new/@vue/compiler-core@12697
```
</p></details>
<details><summary><b>@vue/compiler-dom</b></summary><p>
```
npm i https://pkg.pr.new... | 2025-01-13T14:00:15 | 2025-01-13T14:00:15 | {} | NONE |
vuejs | core | 2,588,566,034 | 12,702 | edison1105 | [minimal reproduction with playground](https://play.vuejs.org/#eNp9Uk1v1DAQ/StTXwpSkwjBqaQRH6oEHABBERdfQjJJ3Dp2ZE92V1rtf2fG2SxbAT3Znvdm/Gbm7dXbaco3M6prVcYmmIkgIs1TpZ0ZJx8I9hCwgwN0wY9wydTL1yfsA1rrf/pg2yOcF+/9mAoKS7vGu8gVB7+FG6nzjMKMzxkqi+U3/ocfhONka0J+AZS/ZiLv4E1jTfNwo9Ux/UJOrao73/cWy2KhLSlnQjaZ6Y5JWkGRPmDGRZbBD2dYTm2tc... | 2025-01-14T01:29:00 | 2025-01-14T01:29:00 | {} | MEMBER |
vuejs | core | 2,595,111,795 | 12,716 | jousi592 | In `src`, create a `component` folder and add files below:
**Create vue component test.vue file:**
```
<script setup lang="ts" generic="V extends number | string | null">
import { ref } from 'vue';
const value = ref<V>(null as V);
</script>
<template>
<div
class="ui-flex ui-p-6 ui-gap-x-4 ui-rounded-lg ui-shad... | 2025-01-16T10:13:40 | 2025-01-16T10:13:40 | {} | NONE |
vuejs | core | 2,596,279,547 | 12,731 | absidue | The documentation already tells you that it returns a `shallowRef`, so I'm not sure why documented behaviour would be unexpected. Additionally changing the return type would be a breaking change.
> Returns a shallow ref [...]
https://vuejs.org/api/composition-api-helpers.html#usetemplateref | 2025-01-16T17:14:06 | 2025-01-16T17:14:06 | {} | NONE |
vuejs | core | 2,601,098,595 | 12,744 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| -------------------------- | ------ | ------- | ------- |
| runtime-dom.global.prod.js | 100 kB | 38 kB | 34.2 kB |
| vue.global.prod.js | 158 kB | 57.8 kB | 51.4 kB |
### Usages
| Name | Size | G... | 2025-01-20T00:26:25 | 2025-01-20T00:26:25 | {} | NONE |
vuejs | core | 2,603,738,926 | 11,285 | guaijie | > If "the slot return type is always `VNode[]`" is expected, should we provide named tuple syntax equal to `defineEmits` for `defineSlots`? It will help us reduce code.
这是我这边暂时使用的解决方案
```ts
type InternalSlots<T extends object> = {
[P in keyof T]: Required<T>[P] extends (...args: any) => any
? (...args: Paramete... | 2025-01-21T06:05:53 | 2025-01-21T06:05:53 | {} | CONTRIBUTOR |
vuejs | core | 2,592,223,538 | 10,747 | aless673 | @tonliver just wasted few hours to debug in "production" mode to understand that the HTML comment was the problem
using vue@3.5.12 | 2025-01-15T10:13:48 | 2025-01-15T10:13:48 | {} | NONE |
vuejs | core | 2,592,982,515 | 8,475 | wilbertverayin | Following up on this. | 2025-01-15T14:20:11 | 2025-01-15T14:20:11 | {} | NONE |
vuejs | core | 2,597,400,627 | 12,570 | KaelWD | Are there updated benchmark results from #12349? | 2025-01-17T04:15:50 | 2025-01-17T04:15:50 | {
"+1": 1
} | CONTRIBUTOR |
vuejs | core | 2,599,635,359 | 12,736 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| -------------------------- | ------ | ------- | ------- |
| runtime-dom.global.prod.js | 100 kB | 38 kB | 34.2 kB |
| vue.global.prod.js | 158 kB | 57.8 kB | 51.4 kB |
### Usages
| Name | Size | G... | 2025-01-18T08:53:20 | 2025-01-18T08:53:20 | {} | NONE |
vuejs | core | 2,600,805,747 | 8,117 | tetap | > v-bind css 功能里面是可以写表达式的, 当你写backgroud-image的 时候是需要你自己添加 url() 函数 When using the 'v-bind css' function, expressions can be added. When using the 'background-image' property, it is necessary to manually add the 'url()' function.
>
> <script setup>
> import testjPG from './test.jpeg'
> const bgUrl = 'https://pcm-30170.... | 2025-01-19T10:46:45 | 2025-01-19T10:46:45 | {} | NONE |
vuejs | core | 2,601,098,047 | 12,742 | pkg-pr-new[bot] |
[Open in Stackblitz](https://pkg.pr.new/template/984b9eb0-887a-438f-abed-c53510fbc189)
<details><summary><b>@vue/compiler-core</b></summary><p>
```
npm i https://pkg.pr.new/@vue/compiler-core@12742
```
</p></details>
<details><summary><b>@vue/compiler-sfc</b></summary><p>
```
npm i https://pkg.pr.new... | 2025-01-20T00:25:41 | 2025-01-20T00:33:55 | {} | NONE |
vuejs | core | 2,603,452,572 | 12,755 | edison1105 | duplicate of https://github.com/vuejs/core/issues/12604
It has nothing to do with `deep`, the modifier should be optional | 2025-01-21T01:34:22 | 2025-01-21T01:36:35 | {} | MEMBER |
vuejs | core | 2,603,969,564 | 12,759 | pkg-pr-new[bot] |
[Open in Stackblitz](https://pkg.pr.new/template/68654daa-86be-4582-8800-2d330534f431)
<details><summary><b>@vue/compiler-core</b></summary><p>
```
npm i https://pkg.pr.new/@vue/compiler-core@12759
```
</p></details>
<details><summary><b>@vue/compiler-ssr</b></summary><p>
```
npm i https://pkg.pr.new... | 2025-01-21T08:34:02 | 2025-01-21T08:43:54 | {} | NONE |
vuejs | core | 2,606,067,311 | 12,764 | edison1105 | This seems to be an nginx configuration issue, not a vuejs/core bug | 2025-01-22T01:11:00 | 2025-01-22T01:11:00 | {} | MEMBER |
vuejs | core | 2,589,361,451 | 7,789 | linhr | It seems the PR to fix this was approved a white ago but is not merged yet. Are there any blockers to have this fixed?
(I'm using [VitePress](https://github.com/vuejs/vitepress) to generate static documentation sites, and I encountered this issue for a few pages with HTML generated by external tools. The HTML contai... | 2025-01-14T08:59:27 | 2025-01-14T09:02:47 | {} | NONE |
vuejs | core | 2,597,237,056 | 12,732 | skirtles-code | I'm unclear what problem this warning is trying to solve.
Code like this triggers the warning:
```js
const msg = reactive([])
msg[0] = 7
```
- [Playground](https://deploy-preview-12732--vue-sfc-playground.netlify.app/#eNp9kE9LAzEQxb9KyKUKpVUUhLIWVHrQg4p6a3pYttNt6uYPyWRdWPLdnWTp2oP0lnnvN5M30/MHa2dtAL7gha+ctM... | 2025-01-17T01:21:42 | 2025-01-17T01:21:42 | {} | CONTRIBUTOR |
vuejs | core | 2,597,527,011 | 12,716 | edison1105 | Please use the latest version of `vue` and `vue-tsc` for testing. If it still doesn't work, please provide a **minimal** reproducible example that can be directly run. Otherwise, this issue will be automatically closed in three days. | 2025-01-17T06:27:10 | 2025-01-17T06:28:08 | {} | MEMBER |
vuejs | core | 2,601,098,162 | 12,742 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| -------------------------- | ------ | ------- | ------- |
| runtime-dom.global.prod.js | 100 kB | 38 kB | 34.2 kB |
| vue.global.prod.js | 158 kB | 57.8 kB | 51.4 kB |
### Usages
| Name | Size | G... | 2025-01-20T00:25:51 | 2025-01-20T00:25:51 | {} | NONE |
vuejs | core | 2,601,136,963 | 12,738 | baiwusanyu-c | I prefer to extend the parameters based on validator to control its behavior, and reduce the generation of new APIs while ensuring compatibility. Too many APIs are not necessarily a good thing. 🧐 | 2025-01-20T01:18:20 | 2025-01-20T01:18:20 | {} | MEMBER |
vuejs | core | 2,606,422,441 | 12,697 | akotulu | Fixed the test. | 2025-01-22T06:45:03 | 2025-01-22T06:45:03 | {
"heart": 1
} | NONE |
vuejs | core | 2,588,642,907 | 12,706 | pkg-pr-new[bot] |
[Open in Stackblitz](https://pkg.pr.new/template/e08832be-6677-4070-8459-9dd15aeaf8d9)
<details><summary><b>@vue/compiler-core</b></summary><p>
```
npm i https://pkg.pr.new/@vue/compiler-core@12706
```
</p></details>
<details><summary><b>@vue/compiler-dom</b></summary><p>
```
npm i https://pkg.pr.new... | 2025-01-14T02:08:08 | 2025-01-14T02:08:08 | {} | NONE |
vuejs | core | 2,589,461,521 | 12,697 | DC240 | > This change will break the existing test case in `packages-private/dts-test/defineComponent.test-d.tsx`. You can verify this by running `pnpm run test-dts`.
>
> By the way, could you provide a test case or a minimal reproduction to clarify the issue this PR is addressing? Thanks!
I can confirm this issue using ... | 2025-01-14T09:47:40 | 2025-01-14T09:47:40 | {} | NONE |
vuejs | core | 2,597,167,194 | 12,732 | edison1105 | Could you please add a test for this? | 2025-01-17T00:15:46 | 2025-01-17T00:15:46 | {} | MEMBER |
vuejs | core | 2,597,241,865 | 12,734 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| -------------------------- | ------ | ------- | ------- |
| runtime-dom.global.prod.js | 100 kB | 38 kB | 34.2 kB |
| vue.global.prod.js | 158 kB | 57.8 kB | 51.4 kB |
### Usages
| Name | Size | G... | 2025-01-17T01:26:19 | 2025-01-17T01:26:19 | {} | NONE |
vuejs | core | 2,558,817,080 | 12,597 | pkg-pr-new[bot] |
[Open in Stackblitz](https://pkg.pr.new/template/6ea0f3ea-bae7-49bc-b720-e7c97d759cbb)
<details><summary><b>@vue/compiler-core</b></summary><p>
```
npm i https://pkg.pr.new/@vue/compiler-core@12597
```
</p></details>
<details><summary><b>@vue/compiler-sfc</b></summary><p>
```
npm i https://pkg.pr.new... | 2024-12-23T03:07:25 | 2025-01-20T01:37:45 | {} | NONE |
vuejs | core | 2,603,719,439 | 12,758 | jh-leong | Closing this as a duplicate of https://github.com/vuejs/core/issues/11071#issuecomment-2153758832. | 2025-01-21T05:53:56 | 2025-01-21T05:53:56 | {} | MEMBER |
vuejs | core | 2,603,799,547 | 12,758 | aixiaodeyanjin | > Closing this as a duplicate of [#11071 (comment)](https://github.com/vuejs/core/issues/11071#issuecomment-2153758832).
thanks, it woks. This seems like a different issue, but it doesn't matter now. | 2025-01-21T06:53:56 | 2025-01-21T06:53:56 | {} | NONE |
vuejs | core | 2,588,489,874 | 12,704 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| -------------------------- | ------ | ------- | ------- |
| runtime-dom.global.prod.js | 100 kB | 38 kB | 34.2 kB |
| vue.global.prod.js | 158 kB | 57.8 kB | 51.4 kB |
### Usages
| Name | Size | G... | 2025-01-14T00:22:57 | 2025-01-14T00:22:57 | {} | NONE |
vuejs | core | 2,588,552,732 | 12,705 | pkg-pr-new[bot] |
[Open in Stackblitz](https://pkg.pr.new/template/e44acfe6-5d0f-4955-a7e1-bf37c24f1eae)
<details><summary><b>@vue/compiler-core</b></summary><p>
```
npm i https://pkg.pr.new/@vue/compiler-core@12705
```
</p></details>
<details><summary><b>@vue/compiler-dom</b></summary><p>
```
npm i https://pkg.pr.new... | 2025-01-14T01:18:20 | 2025-01-14T01:25:51 | {} | NONE |
vuejs | core | 2,591,552,336 | 12,712 | 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/6787278e1258520008abdcb0?deploy_diagnostics=true)**
| Name | Link |
|:-:|------------------------|
|<span aria-hidden="true">🔨</span> ... | 2025-01-15T03:14:07 | 2025-01-15T03:14:07 | {} | NONE |
vuejs | core | 2,592,826,258 | 12,719 | edison1105 | This change will cause the following issues:
- If `el` does not exist, adding `el` in `beforeMount` will cause the logic that should be `mount` to become `hydrate`.
- If `el` exists, modifying `el` in `beforeMount` will cause a hydration mismatch. | 2025-01-15T13:13:09 | 2025-01-15T13:13:09 | {} | MEMBER |
vuejs | core | 2,594,654,081 | 12,716 | edison1105 | Please provide a complete, reproducible example that can run `npm run build` | 2025-01-16T06:43:30 | 2025-01-16T06:43:30 | {
"+1": 1
} | MEMBER |
vuejs | core | 2,597,242,148 | 12,734 | pkg-pr-new[bot] |
[Open in Stackblitz](https://pkg.pr.new/template/a4fb3d85-8f2f-46cf-a129-2662bdd5a747)
<details><summary><b>@vue/compiler-core</b></summary><p>
```
npm i https://pkg.pr.new/@vue/compiler-core@12734
```
</p></details>
<details><summary><b>@vue/compiler-dom</b></summary><p>
```
npm i https://pkg.pr.new... | 2025-01-17T01:26:35 | 2025-01-17T01:26:35 | {} | NONE |
vuejs | core | 2,600,404,264 | 12,740 | edison1105 | Thank you for your PR, but there is already a PR for #11366, see #11369 | 2025-01-19T01:50:32 | 2025-01-19T01:50:32 | {} | MEMBER |
vuejs | core | 2,601,098,810 | 12,744 | pkg-pr-new[bot] |
[Open in Stackblitz](https://pkg.pr.new/template/28ba7514-eda4-4133-94ee-dea3f17c1392)
<details><summary><b>@vue/compiler-core</b></summary><p>
```
npm i https://pkg.pr.new/@vue/compiler-core@12744
```
</p></details>
<details><summary><b>@vue/compiler-dom</b></summary><p>
```
npm i https://pkg.pr.new... | 2025-01-20T00:26:42 | 2025-01-20T00:26:42 | {} | NONE |
vuejs | core | 2,601,996,542 | 12,750 | pkg-pr-new[bot] |
[Open in Stackblitz](https://pkg.pr.new/template/970ffe0e-bb34-40a5-adb7-6406ab140de1)
<details><summary><b>@vue/compiler-core</b></summary><p>
```
npm i https://pkg.pr.new/@vue/compiler-core@12750
```
</p></details>
<details><summary><b>@vue/compiler-sfc</b></summary><p>
```
npm i https://pkg.pr.new... | 2025-01-20T10:18:40 | 2025-01-20T10:18:40 | {} | NONE |
vuejs | core | 2,590,337,749 | 12,711 | pkg-pr-new[bot] |
[Open in Stackblitz](https://pkg.pr.new/template/8af30e09-d8d1-4426-a9a4-4b3f2596c201)
<details><summary><b>@vue/compiler-core</b></summary><p>
```
npm i https://pkg.pr.new/@vue/compiler-core@12711
```
</p></details>
<details><summary><b>@vue/compiler-dom</b></summary><p>
```
npm i https://pkg.pr.new... | 2025-01-14T16:00:54 | 2025-01-14T16:00:54 | {} | NONE |
vuejs | core | 2,591,557,450 | 12,570 | yyx990803 | Seems the quasar error isn't related. | 2025-01-15T03:19:16 | 2025-01-15T03:19:16 | {
"heart": 1
} | MEMBER |
vuejs | core | 2,603,968,696 | 12,759 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| -------------------------- | ------ | ------- | ------- |
| runtime-dom.global.prod.js | 100 kB | 38 kB | 34.2 kB |
| vue.global.prod.js | 158 kB | 57.8 kB | 51.4 kB |
### Usages
| Name | Size | G... | 2025-01-21T08:33:38 | 2025-01-21T08:33:38 | {} | NONE |
vuejs | core | 2,594,388,972 | 12,726 | edison1105 | I don't think this issue needs to be fixed for the following reasons:
- According to the slot type definition, its return value should aways be of type VNode[]
- When rendering a component, if the slot return value is an object (not an array), its working should be considered an accident.
- Using slots with native elem... | 2025-01-16T03:14:35 | 2025-01-16T03:15:14 | {
"+1": 1
} | MEMBER |
vuejs | core | 2,598,672,799 | 12,730 | Hulkmaster | I'm ashamed
it does **not** indeed work in our project (latest vue/vite)
but it does work correctly in plain vite-create project
i did not bother to try out on empty project first before creating an issue
sorry for wasting your time | 2025-01-17T15:59:16 | 2025-01-17T15:59:16 | {
"heart": 1
} | NONE |
vuejs | core | 2,601,098,286 | 12,743 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| -------------------------- | ------ | ------- | ------- |
| runtime-dom.global.prod.js | 100 kB | 38 kB | 34.2 kB |
| vue.global.prod.js | 158 kB | 57.8 kB | 51.4 kB |
### Usages
| Name | Size | G... | 2025-01-20T00:26:02 | 2025-01-20T00:26:02 | {} | NONE |
vuejs | core | 2,585,322,457 | 12,692 | pkg-pr-new[bot] |
[Open in Stackblitz](https://pkg.pr.new/template/95f9ed1b-bea2-47a4-968e-6addab932b5e)
<details><summary><b>@vue/compiler-core</b></summary><p>
```
npm i https://pkg.pr.new/@vue/compiler-core@12692
```
</p></details>
<details><summary><b>@vue/compiler-sfc</b></summary><p>
```
npm i https://pkg.pr.new... | 2025-01-11T16:19:47 | 2025-01-20T00:26:08 | {} | NONE |
vuejs | core | 2,601,151,841 | 12,746 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| -------------------------- | ------ | ------- | ------- |
| runtime-dom.global.prod.js | 100 kB | 38 kB | 34.2 kB |
| vue.global.prod.js | 158 kB | 57.8 kB | 51.4 kB |
### Usages
| Name | Size | G... | 2025-01-20T01:37:51 | 2025-01-20T01:37:51 | {} | NONE |
vuejs | core | 2,601,588,848 | 12,716 | KazariEX | Have you enabled `strictNullChecks`? | 2025-01-20T07:15:15 | 2025-01-20T07:15:15 | {} | MEMBER |
vuejs | core | 2,601,762,185 | 12,716 | jousi592 | Enabling `strictNullChecks` solved it, thank you 👍 | 2025-01-20T08:41:08 | 2025-01-20T08:41:08 | {} | NONE |
vuejs | core | 2,588,551,716 | 12,705 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| -------------------------- | ------------------ | ------------------- | ------------------- |
| runtime-dom.global.prod.js | 100 kB (**+18 B**) | 38 kB (**+13 B**) | 34.2 kB (**+23 B**) |
| v... | 2025-01-14T01:17:14 | 2025-01-14T01:17:14 | {} | NONE |
vuejs | core | 2,591,818,972 | 12,709 | edison1105 | a workaround
```js
return renderSlot(slots,'b');
```
see [playground](https://play.vuejs.org/#eNqVVc1u00AQfpWVOdiRXBcESMgkEVBxgENBwA1zcJxJ4tbetXbXIVVkCQESIEBC4sqxEhISHLggVHictK/B7I8dN21TmkOyO7/fzM58mTu3iyKYluCETlckPC0kESDLoh/RNC8Yl2ROOIxIRUac5cRFU7dRSRDSyoNNdVGRUB3RhFFUCQmFID3yNKKEzNUXIQWHBKgMydXLvpFImOHVPTp45WpJpb9Xza... | 2025-01-15T07:23:20 | 2025-01-15T07:42:56 | {} | MEMBER |
vuejs | core | 2,603,436,993 | 12,754 | edison1105 | The development environment has already issued a warning message. Perhaps it is necessary to refine the warning message to inform users that the production environment will report an error. | 2025-01-21T01:14:06 | 2025-01-21T01:14:06 | {} | MEMBER |
vuejs | core | 2,588,574,003 | 7,389 | kingsley-s | @carl-underwood ,have you solved this problem?
I have the same problem. Props is readonly, causing the UI component library to use spread to return {}, which is reproduced in iOS 12.3.2. | 2025-01-14T01:34:14 | 2025-01-14T01:34:14 | {} | NONE |
vuejs | core | 2,590,337,036 | 12,711 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| -------------------------- | ------------------ | ------------------ | ------------------- |
| runtime-dom.global.prod.js | 100 kB (**+40 B**) | 38 kB (**+10 B**) | 34.3 kB (**+30 B**) |
| vue.... | 2025-01-14T16:00:40 | 2025-01-14T16:00:40 | {} | NONE |
vuejs | core | 2,597,234,385 | 12,733 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| -------------------------- | ----------------- | ------------------ | ------------------ |
| runtime-dom.global.prod.js | 100 kB (**+4 B**) | 38 kB (**+7 B**) | 34.2 kB (**-7 B**) |
| vue.global... | 2025-01-17T01:19:01 | 2025-01-17T03:20:50 | {} | NONE |
vuejs | core | 2,598,990,093 | 12,735 | skirtles-code | I think the problem is that the first argument passed to `reduce` isn't wrapped in a proxy. e.g.:
```js
reactive([{ a: 1 }, { b: 2 }]).reduce((c, d) => {
console.log(c, d)
})
```
`d` is wrapped in a proxy, but `c` isn't.
- [Playground](https://play.vuejs.org/#eNp9UctOwzAQ/JWVL02lKBWPU1QqAeoBDoCAG+YQnG1wcWzLjxApyr+... | 2025-01-17T18:46:11 | 2025-01-17T18:47:14 | {} | CONTRIBUTOR |
vuejs | core | 2,600,486,466 | 12,738 | btea | Thanks for your reply.
> I'm afraid this would be a breaking change as returning a non-empty string used to mean validation success.
Yes, this is indeed a problem.
> To be honest, I’ve always thought the custom validator should be named `validate`. If we can adopt this new name, it could open up new possibilities ... | 2025-01-19T02:12:42 | 2025-01-19T02:12:42 | {} | CONTRIBUTOR |
vuejs | core | 2,603,523,880 | 12,756 | jh-leong | It seems this change might break an existing case: [Playground](https://play.vuejs.org/#eNp9UtFOwjAU/ZXal0FCWAxvOEjUkKgPapDEl73M7W4Mu7ZpO8Qs+3fvLWygQd56zzn33tP2NPxW6/G2Bj7lkU1NqR2z4Go9j2VZaWUca5iBnLUsN6piAUqDm567V5U+EOOQChpFfKqkdayyBZtR+yB4ACEUe1dGZFfBEBVRuF+Hi7BwUGmROMCKsWh9PW8a3922UYiVR2n+PPJrEIjCvoePuLO4MS+L8cYqiXdp... | 2025-01-21T02:58:34 | 2025-01-21T02:58:34 | {
"+1": 1
} | MEMBER |
vuejs | core | 2,588,605,555 | 4,339 | ShawnRZ | Really need this❤️ | 2025-01-14T01:55:08 | 2025-01-14T01:55:08 | {} | NONE |
vuejs | core | 2,597,234,604 | 12,733 | pkg-pr-new[bot] |
[Open in Stackblitz](https://pkg.pr.new/template/307b33f2-5a50-41c7-90dc-a59e5b6bf00f)
<details><summary><b>@vue/compiler-core</b></summary><p>
```
npm i https://pkg.pr.new/@vue/compiler-core@12733
```
</p></details>
<details><summary><b>@vue/compiler-sfc</b></summary><p>
```
npm i https://pkg.pr.new... | 2025-01-17T01:19:15 | 2025-01-17T03:21:07 | {} | NONE |
vuejs | core | 2,597,691,883 | 12,731 | HafisCZ | > The documentation already tells you that it returns a `shallowRef`, so I'm not sure why documented behaviour would be unexpected. Additionally changing the return type would be a breaking change.
>
> > Returns a shallow ref [...]
>
> https://vuejs.org/api/composition-api-helpers.html#usetemplateref
In the link you... | 2025-01-17T08:30:23 | 2025-01-17T08:30:23 | {
"eyes": 1
} | NONE |
vuejs | core | 2,600,379,101 | 12,738 | Justineo | I'm afraid this would be a breaking change as returning a non-empty string used to mean validation success.
I like the idea and would love for Vue to include a built-in solution that allows developers to leverage existing utilities for handling prop validation errors. To be honest, I’ve always thought the custom valid... | 2025-01-19T01:25:04 | 2025-01-19T01:31:04 | {
"+1": 1
} | MEMBER |
vuejs | core | 2,585,321,629 | 12,686 | pkg-pr-new[bot] |
[Open in Stackblitz](https://pkg.pr.new/template/a1d18760-cf35-4348-ae54-22e9f95d84c9)
<details><summary><b>@vue/compiler-core</b></summary><p>
```
npm i https://pkg.pr.new/@vue/compiler-core@12686
```
</p></details>
<details><summary><b>@vue/compiler-ssr</b></summary><p>
```
npm i https://pkg.pr.new... | 2025-01-11T16:16:40 | 2025-01-20T00:25:52 | {} | NONE |
vuejs | core | 2,588,640,961 | 12,706 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| -------------------------- | ------ | ------- | ------- |
| runtime-dom.global.prod.js | 100 kB | 38 kB | 34.2 kB |
| vue.global.prod.js | 158 kB | 57.8 kB | 51.4 kB |
### Usages
| Name | Size | G... | 2025-01-14T02:07:46 | 2025-01-14T02:07:46 | {} | NONE |
vuejs | core | 2,589,988,500 | 12,710 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| -------------------------- | ------------------- | ------------------- | ------------------- |
| runtime-dom.global.prod.js | 100 kB (**+39 B**) | 38 kB (**+23 B**) | 34.3 kB (**+65 B**) |
... | 2025-01-14T13:56:54 | 2025-01-15T03:08:31 | {} | NONE |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.