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,696,803,972 | 9,064 | vue-bot |
📝 Ran ecosystem CI: [Open](https://github.com//vuejs/ecosystem-ci/actions/runs/6008394227)
| suite | result |
|-------|--------|
| [nuxt](https://github.com/vuejs/ecosystem-ci/actions/runs/6008394227/job/16296595119) | :white_check_mark: success |
| [pinia](https://github.com/vuejs/ecosystem-ci/actions/runs/60083942... | 2023-08-29T05:42:55 | 2023-08-29T06:22:21 | {} | CONTRIBUTOR |
vuejs | core | 1,692,188,067 | 8,989 | SavkaTaras | Hello @baiwusanyu-c , could you please merge this PR, once all approved? Thank you so much! | 2023-08-24T18:11:21 | 2023-08-24T18:11:21 | {} | NONE |
vuejs | core | 1,692,217,221 | 8,989 | SavkaTaras | > @SavkaTaras Hi, we Vue team has a specific cycle to merge PRs and release, please be patient ❤️
@sxzz thank you so much! I appreciate it. | 2023-08-24T18:34:17 | 2023-08-24T18:34:17 | {} | NONE |
vuejs | core | 1,692,594,530 | 9,034 | Alfred-Skyblue | Indeed, VueUse can achieve this functionality. However, in scenarios where we are encapsulating components within standalone libraries, we might not intend to incorporate additional third-party libraries. I've provided a list of the common use cases I frequently encounter:
1. Switching states: When data changes, tog... | 2023-08-25T00:43:21 | 2023-08-25T00:43:21 | {
"+1": 2
} | MEMBER |
vuejs | core | 1,692,663,483 | 9,041 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| -------------------------- | ------------------- | ------------------ | ------------------- |
| runtime-dom.global.prod.js | 85.9 kB (**+17 B**) | 32.6 kB (**+4 B**) | 29.5 kB (**+19 B**) |
| v... | 2023-08-25T02:22:01 | 2023-08-25T02:22:01 | {} | NONE |
vuejs | core | 1,694,589,309 | 4,733 | Exlord | updated version of @rdunk solution, I added a check for `Fragmanet` too, Its usefull if you have `<template>` in your slot.
```ts
export function isVNodeEmpty(vnode: VNode | VNode[] | undefined | null) {
return (
!vnode ||
asArray(vnode).every(
(vnode) =>
vnode.type === Comment ||
... | 2023-08-27T07:01:54 | 2023-08-27T07:02:45 | {} | NONE |
vuejs | core | 1,696,712,753 | 9,064 | vue-bot |
📝 Ran ecosystem CI: [Open](https://github.com//vuejs/ecosystem-ci/actions/runs/6007558961)
| suite | result |
|-------|--------|
| [nuxt](https://github.com/vuejs/ecosystem-ci/actions/runs/6007558961/job/16293858143) | :white_check_mark: success |
| [pinia](https://github.com/vuejs/ecosystem-ci/actions/runs/60075589... | 2023-08-29T03:26:55 | 2023-08-29T03:36:33 | {} | CONTRIBUTOR |
vuejs | core | 1,015,828,695 | 4,404 | netlify[bot] | ### <span aria-hidden="true">❌</span> Deploy Preview for *vue-next-template-explorer* failed.
| Name | Link |
|:-:|------------------------|
|<span aria-hidden="true">🔨</span> Latest commit | 4b7e531c41af88eb4bc6e538557287fb19510618 |
|<span aria-hidden="true">🔍</span> Latest deploy log | https://app.netlify.com/s... | 2022-01-18T20:59:29 | 2023-08-29T07:10:17 | {} | NONE |
vuejs | core | 1,697,044,072 | 4,404 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| -------------------------- | ---------------------- | -------------------- | -------------------- |
| runtime-dom.global.prod.js | 87.6 kB (**+1.76 kB**) | 33.2 kB (**+590 B**) | 30 kB (*... | 2023-08-29T09:00:30 | 2023-08-29T17:11:18 | {} | NONE |
vuejs | core | 1,691,598,170 | 8,576 | SnosMe | I've found workaround is to use uppercase/class version of `Boolean`. Most likely your linter will complain about this. 😄But it works, and I get undefined instead of false.
| 2023-08-24T12:38:37 | 2023-08-24T12:38:37 | {} | NONE |
vuejs | core | 1,692,093,398 | 9,035 | codeflorist | @Alfred-Skyblue thanks for your suggestion! unfortunately it does not solve the problem. i've updated reproduction and issue-text using unique keys. the problem still persists. | 2023-08-24T17:01:22 | 2023-08-24T17:01:22 | {} | NONE |
vuejs | core | 1,695,195,764 | 9,058 | LinusBorg | > I thought I can trigger the effect without changing the value by using the triggerRef.
The watcher's getter function *is* being triggered by `triggerRef`. the callback however, is only being run if the watch's getter function returns a different value.
The array example works because each time the getter runs,... | 2023-08-28T07:43:45 | 2023-08-28T07:43:45 | {} | MEMBER |
vuejs | core | 1,695,202,858 | 9,058 | lejunyang | > > I thought I can trigger the effect without changing the value by using the triggerRef.
>
> The watcher's getter function _is_ being triggered by `triggerRef`. the callback however, is only being run if the watch's getter function returns a different value.
>
> The array example works because each time the get... | 2023-08-28T07:48:46 | 2023-08-28T07:48:46 | {} | CONTRIBUTOR |
vuejs | core | 1,696,090,002 | 9,061 | haoqunjiang | Not worth the refactor:
- No evidence to prove that this code path is a bottleneck;
- No significant performance improvement (2N -> N, still O(N))
- Worse readability. | 2023-08-28T17:42:13 | 2023-08-28T17:42:13 | {} | MEMBER |
vuejs | core | 1,015,828,706 | 4,404 | netlify[bot] | ❌ Deploy Preview for *vuejs-coverage* failed.
🔨 Explore the source changes: 4b3aed23e687c9d77d4fdcac537be15443a9a608
🔍 Inspect the deploy log: [https://app.netlify.com/sites/vuejs-coverage/deploys/61f028cc78ee8b00078627b9](https://app.netlify.com/sites/vuejs-coverage/deploys/61f028cc78ee8b00078627b9)
| 2022-01-18T20:59:29 | 2023-08-29T07:10:25 | {} | NONE |
vuejs | core | 1,697,543,525 | 9,078 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| -------------------------- | ------------------- | ------------------ | ------------------- |
| runtime-dom.global.prod.js | 85.9 kB (**+16 B**) | 32.7 kB (**+9 B**) | 29.5 kB (**+12 B**) |
| v... | 2023-08-29T14:20:47 | 2023-08-29T14:20:47 | {} | NONE |
vuejs | core | 1,697,571,400 | 9,049 | LinusBorg | I think this is because slot content can be multiple elements, so slot content from a compiled slot is always wrapped in a Fragment vnode - and the renderer doesn't/can't apply attributes to fragment nodes.
For now, I'm not sure wether this strictly needs to be this way for slots. | 2023-08-29T14:35:34 | 2023-08-29T14:35:34 | {} | MEMBER |
vuejs | core | 1,692,032,410 | 5,917 | MellKam | I don't know for sure, but it seems like `toHandlers` is what you need.
UPD: No, it doesnt work.
Here's a utility from shadcn-vue https://github.com/radix-vue/shadcn-vue/blob/ae81084f367b704615f6e6677c91cbae466c4978/apps/www/src/lib/utils.ts#L17-L34 that I've improved a bit and it works great for me.
```ts
im... | 2023-08-24T16:30:41 | 2023-08-24T18:43:10 | {
"+1": 1,
"heart": 1
} | NONE |
vuejs | core | 1,694,581,203 | 9,054 | PL-FE | 已经收到您的来信,我会尽快回复。 | 2023-08-27T06:08:13 | 2023-08-27T06:08:13 | {} | NONE |
vuejs | core | 1,694,596,238 | 9,055 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| -------------------------- | ------------------- | ------------------ | ------------------- |
| runtime-dom.global.prod.js | 85.9 kB (**+14 B**) | 32.6 kB (**+4 B**) | 29.5 kB (**+17 B**) |
| v... | 2023-08-27T07:41:35 | 2023-08-27T07:41:35 | {} | NONE |
vuejs | core | 1,694,965,204 | 9,058 | attheGarden | <img width="407" alt="image" src="https://github.com/vuejs/core/assets/38374102/ce42cc61-2774-4e05-b30e-fb931d5d4aa6">
The first case does not work because the value has not changed (always msg.value).
The second case works because a new return value is obtained (oldValue - `msg.value`, newValue - `[msg.value]`) | 2023-08-28T03:55:31 | 2023-08-28T03:55:31 | {} | NONE |
vuejs | core | 1,696,498,609 | 5,912 | johnsoncodehk | /ecosystem-ci run | 2023-08-28T22:14:00 | 2023-08-28T22:14:00 | {
"+1": 1
} | MEMBER |
vuejs | core | 1,692,659,384 | 9,041 | vercel[bot] | @chenfan0 is attempting to deploy a commit to the **vuejs** Team on [Vercel](https://vercel.com).
A member of the Team first needs to [authorize it](https://vercel.com/git/authorize?team=vuejs&type=github&job=%7B%22headInfo%22%3A%7B%22sha%22%3A%222a7d34dbba85029b58bbb8e7064351d04ab06c60%22%7D%2C%22id%22%3A%22QmS3CuEUr... | 2023-08-25T02:17:16 | 2023-08-25T02:17:16 | {} | NONE |
vuejs | core | 1,693,103,852 | 4,948 | tommie | To anyone looking for an answer to themeing, I wrote this postcss plugin with a `:local()` psuedo-selector: https://gist.github.com/tommie/c0eefee636033ff48cda50f89e3ccefa | 2023-08-25T09:55:54 | 2023-08-25T09:55:54 | {
"+1": 1,
"rocket": 1
} | NONE |
vuejs | core | 1,691,867,571 | 8,969 | sxzz | If I understand correctly, is this issue about TypeScript rather than runtime? If so, we should transfer it to repo of vue language tools.
/cc @johnsoncodehk | 2023-08-24T15:09:55 | 2023-08-25T10:02:43 | {
"+1": 2
} | MEMBER |
vuejs | core | 1,693,738,157 | 2,913 | chepe263 | This happened on windows, with vue's webpack.
Let's say you have two vue projects, and share components
```
...
project-a/src/components/Button.vue
project-a/src/views/Homepage.vue
...
project-b/src/components/Image.vue
project-a/src/views/ProductList.vue
```
You have a node modules in both projects... | 2023-08-25T17:57:01 | 2023-08-25T17:57:01 | {} | NONE |
vuejs | core | 1,694,581,149 | 9,054 | liulinboyi |

[playground](https://play.vuejs.org/#__DEV__eNqNVVtvE0cU/iuj5YEN8S2kD8g4kWjFA31oq7ZSX/ZlsjtrT7KeGc3MOrYsPxSqJkBQi6pyCUFtKYIICeIgIcLt32Q3zhN/gTOz3vUSIcTL6My5fd/55ng9dC4IUevFxGk6LeVLKjRSRMdi2WO0K7jUaIgkCStwYF/THqkgn3dFrE... | 2023-08-27T06:07:49 | 2023-08-27T06:19:40 | {
"+1": 1,
"heart": 1
} | MEMBER |
vuejs | core | 1,685,797,136 | 7,836 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| -------------------------- | --------------------- | -------------------- | -------------------- |
| runtime-dom.global.prod.js | 86.7 kB (**+876 B**) | 32.9 kB (**+223 B**) | 29.7 kB (**... | 2023-08-21T07:28:59 | 2023-08-28T12:34:58 | {} | NONE |
vuejs | core | 1,695,713,698 | 9,062 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| -------------------------- | ------- | ------- | ------- |
| runtime-dom.global.prod.js | 85.8 kB | 32.6 kB | 29.5 kB |
| vue.global.prod.js | 132 kB | 49.3 kB | 44.3 kB |
### Usages
| Name | Size |... | 2023-08-28T13:35:17 | 2023-08-28T13:35:17 | {} | NONE |
vuejs | core | 1,695,755,915 | 9,060 | LinusBorg | Please provide a *minimal* runnable reproduction. We can't debug full projects. | 2023-08-28T14:01:18 | 2023-08-28T14:01:18 | {} | MEMBER |
vuejs | core | 1,697,149,597 | 9,073 | silentmantra | by design | 2023-08-29T10:10:13 | 2023-08-29T10:10:13 | {} | NONE |
vuejs | core | 1,697,457,720 | 9,060 | lixiaofa | > Please provide a _minimal_ runnable reproduction. We can't debug full projects.
It cannot be reproduced, but errors will indeed be reported in the project.
What could be the problem, can you discuss it?
@LinusBorg | 2023-08-29T13:34:12 | 2023-08-29T13:34:44 | {} | NONE |
vuejs | core | 1,697,594,148 | 9,064 | johnsoncodehk | /ecosystem-ci run | 2023-08-29T14:48:06 | 2023-08-29T14:48:06 | {
"+1": 1
} | MEMBER |
vuejs | core | 1,692,202,949 | 8,989 | sxzz | @SavkaTaras Hi, we Vue team has a specific cycle to merge PRs and release, please be patient ❤️ | 2023-08-24T18:22:54 | 2023-08-24T18:23:05 | {
"+1": 1
} | MEMBER |
vuejs | core | 1,692,602,905 | 8,976 | edison1105 | @sxzz
this PR seems to fix [this scenario](https://play.vuejs.org/#__DEV__eNqNUk1PwkAQ/SuTvQCJoUHUAykkajjoQYkaT3tpygDF7e5md4skTf+7s1tKQZDIgXTeezvz5qNk91r3NwWyEYttajLtwKIr9ITLLNfKOCjB4AIqWBiVQ4eknT31qHK9w/uRD3wmorlMlbQOcruEsX/e7Qyuh51egy/RfSaCqO4mET0YT6DkEuhnqLSRQCiXFZdxVFsiMxQ4zLVIHFIUh8ojyj/mrM7WpaDHGUSejg607Io5S3UX... | 2023-08-25T00:54:40 | 2023-08-25T01:03:30 | {
"+1": 1
} | MEMBER |
vuejs | core | 1,694,145,100 | 9,051 | vercel[bot] | @chenfan0 is attempting to deploy a commit to the **vuejs** Team on [Vercel](https://vercel.com).
A member of the Team first needs to [authorize it](https://vercel.com/git/authorize?team=vuejs&type=github&job=%7B%22headInfo%22%3A%7B%22sha%22%3A%229c63a536da38f09660f374df5d57537a5918d5d4%22%7D%2C%22id%22%3A%22QmeWnfht5... | 2023-08-26T03:49:31 | 2023-08-26T03:49:31 | {} | NONE |
vuejs | core | 1,696,782,997 | 9,064 | vue-bot |
📝 Ran ecosystem CI: [Open](https://github.com//vuejs/ecosystem-ci/actions/runs/6008231002)
| suite | result |
|-------|--------|
| [nuxt](https://github.com/vuejs/ecosystem-ci/actions/runs/6008231002/job/16295572175) | :white_check_mark: success |
| [pinia](https://github.com/vuejs/ecosystem-ci/actions/runs/60082310... | 2023-08-29T05:19:05 | 2023-08-29T05:32:20 | {} | CONTRIBUTOR |
vuejs | core | 1,696,874,548 | 4,404 | netlify[bot] | ### <span aria-hidden="true">❌</span> Deploy Preview for *vue-sfc-playground* failed.
| Name | Link |
|:-:|------------------------|
|<span aria-hidden="true">🔨</span> Latest commit | 4b7e531c41af88eb4bc6e538557287fb19510618 |
|<span aria-hidden="true">🔍</span> Latest deploy log | https://app.netlify.com/sites/vue... | 2023-08-29T06:56:00 | 2023-08-29T16:06:38 | {} | NONE |
vuejs | core | 1,713,851,866 | 9,185 | Xowap | Just to be clear on the above comment, in order to produce the bug in dev mode you need to apply the patch that forces `__DEV__` to `false` in the two location mentioned then build `esm-browser` in dev mode. This will produce a `packages/vue/dist/vue.esm-browser.js` file which once loaded as `vue` import in my demo abo... | 2023-09-11T13:11:26 | 2023-09-11T13:11:26 | {} | NONE |
vuejs | core | 1,715,144,472 | 9,191 | xuzuodong | Oh thanks for pointing out! 🫶
It's a little counterintuitive though so that I forgot I read this part of document before and should've known that 🥲 | 2023-09-12T07:22:21 | 2023-09-12T07:22:21 | {} | NONE |
vuejs | core | 1,715,252,881 | 9,185 | edison1105 | > Could be, however this bug manifested in Nuxt initially, all I did was reproduce the use case. Should I bring the issue to them then?
please provide a runnable reproduction with nuxt, let's see further. | 2023-09-12T08:32:27 | 2023-09-12T08:32:27 | {} | MEMBER |
vuejs | core | 1,717,678,001 | 8,952 | goulashify | I ran into this many times, huge +1. | 2023-09-13T13:51:24 | 2023-09-13T13:51:24 | {} | NONE |
vuejs | core | 1,719,490,783 | 9,217 | stoner-w | I think this is expected in vue | 2023-09-14T13:48:24 | 2023-09-14T13:48:24 | {} | NONE |
vuejs | core | 1,720,822,173 | 9,214 | LinusBorg | ```js
setup(props) {
return () => {
// when deconstructing props, move that into the render function. setup itself only runs once.
const { item, onDelete } = props;
return (<div>
<input
type="checkbox"
``` | 2023-09-15T07:40:24 | 2023-09-15T07:40:24 | {} | MEMBER |
vuejs | core | 1,721,570,845 | 6,435 | rudolfbyker | Here is my workaround:
```
/**
* This is similar to `component(:is="tag")`, except that it also works in SSR.
*
* See:
* - https://discord.com/channels/473401852243869706/1152225826910244955/1152225826910244955
* - https://stackblitz.com/edit/github-gs1ptn
* - https://github.com/vuejs/core/issues/6553#i... | 2023-09-15T16:47:18 | 2023-09-15T16:47:18 | {
"+1": 1
} | NONE |
vuejs | core | 1,712,989,721 | 9,180 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| -------------------------- | ------- | ------- | ------- |
| runtime-dom.global.prod.js | 85.9 kB | 32.6 kB | 29.5 kB |
| vue.global.prod.js | 132 kB | 49.3 kB | 44.4 kB |
### Usages
| Name | Size |... | 2023-09-11T00:28:36 | 2023-09-11T00:28:36 | {} | NONE |
vuejs | core | 1,713,109,499 | 4,339 | trydofor | see
https://github.com/vuejs/vue/issues/8028
https://github.com/vuejs/core/issues/6219
https://github.com/vuejs/core/pull/6235
| 2023-09-11T03:38:00 | 2023-09-11T05:54:41 | {} | NONE |
vuejs | core | 1,719,267,568 | 4,294 | so1ve | @tombohub I'm working on an unplugin: https://github.com/so1ve/unplugin-vue-complex-types which uses typescript compiler's API to resolve such types. But it is not useable now since it has very very huge performance issues. | 2023-09-14T11:25:00 | 2023-09-14T11:25:00 | {
"+1": 1,
"heart": 3
} | MEMBER |
vuejs | core | 1,721,231,149 | 9,225 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| -------------------------- | ------------------- | ------------------- | ------------------- |
| runtime-dom.global.prod.js | 85.9 kB (**+27 B**) | 32.7 kB (**+10 B**) | 29.5 kB (**-4 B**) |
... | 2023-09-15T12:52:14 | 2023-09-15T12:52:14 | {} | NONE |
vuejs | core | 1,721,285,022 | 9,169 | serialine | created https://github.com/vuejs/language-tools/issues/3563 | 2023-09-15T13:28:37 | 2023-09-15T13:38:07 | {} | NONE |
vuejs | core | 1,722,646,554 | 9,214 | YangGangGith | thank you @LinusBorg | 2023-09-18T01:31:27 | 2023-09-18T01:31:27 | {} | NONE |
vuejs | core | 1,714,184,310 | 9,185 | linghaoSu | You can set `app.config.compilerOptions.comments` as `true`, and then you will get the right hydrate.
<img width="1159" alt="image" src="https://github.com/vuejs/core/assets/56526981/07f8992c-048e-465a-b226-24b51e9f20c4">
The `comments` option in `compilerOptions` defaults to `false` in production, and when gener... | 2023-09-11T16:07:36 | 2023-09-11T16:07:36 | {} | CONTRIBUTOR |
vuejs | core | 1,715,164,749 | 9,185 | Xowap | Just to be clear, what should I do different in my published example? Let's say that the documentation is far from being exhaustive on that topic. | 2023-09-12T07:37:15 | 2023-09-12T07:37:15 | {} | NONE |
vuejs | core | 1,715,285,544 | 9,185 | Xowap | Indeed, after digging into the package source code, I understand that the import varies depending on whether `NODE_ENV=production` or not and if I set it the bug goes away. My mistake from reading the Nuxt doc and expecting that this variable was set automatically for some reason.
However this is a highly surprising... | 2023-09-12T08:50:04 | 2023-09-12T08:50:04 | {} | NONE |
vuejs | core | 1,715,893,181 | 9,199 | baiwusanyu-c | LGTM, but there seems to be a bit of a ‘breaking change’ | 2023-09-12T14:58:46 | 2023-09-12T14:58:46 | {} | MEMBER |
vuejs | core | 1,719,877,745 | 6,463 | ilyaDegtyarenko | Nuxt 3.7.3
Detailed reproduction:
https://stackblitz.com/edit/nuxt-starter-btlcfb?file=pages%2Fwaiting.vue | 2023-09-14T17:39:54 | 2023-09-14T17:39:54 | {
"+1": 3
} | NONE |
vuejs | core | 1,720,917,426 | 9,169 | so1ve | @serialine Do you mean you are experiencing this issue on your machine? Could you please provide a reproduction repository? | 2023-09-15T08:53:24 | 2023-09-15T08:53:24 | {} | MEMBER |
vuejs | core | 1,721,275,232 | 9,169 | so1ve | @serialine Thanks for your reproduction. It would be great if you report this issue to https://github.com/vuejs/language-tools instead of this repo so we can track there. | 2023-09-15T13:21:57 | 2023-09-15T13:21:57 | {
"heart": 1
} | MEMBER |
vuejs | core | 1,717,645,078 | 4,294 | so1ve | @OliverRC It should work now. | 2023-09-13T13:32:39 | 2023-09-13T13:32:39 | {} | MEMBER |
vuejs | core | 1,719,257,848 | 4,314 | padcom | I'm facing the same issue and also with components that are rendered based on content from a CMS. I am using GrapesJS as the page editor and having custom elements with reactivity is a blessing by comparison to creating all of the logic from scratch.
However, since there are multiple pages in a single site, it is ab... | 2023-09-14T11:18:05 | 2023-09-14T11:18:05 | {
"+1": 2
} | CONTRIBUTOR |
vuejs | core | 1,719,763,057 | 9,157 | netlify[bot] | ### <span aria-hidden="true">❌</span> Deploy Preview for *vue-next-template-explorer* failed.
| Name | Link |
|:-:|------------------------|
|<span aria-hidden="true">🔨</span> Latest commit | 84802e91861afe150978346ea06a25613c7ea6d3 |
|<span aria-hidden="true">🔍</span> Latest deploy log | https://app.netlify.com/s... | 2023-09-14T16:20:47 | 2023-09-14T16:20:47 | {} | NONE |
vuejs | core | 1,713,717,699 | 9,185 | Xowap | So I've done a bisection to figure which flags are causing the issue, it _looks_ like when those two are set together it will cause the bug to happen.
```diff
diff --git a/packages/compiler-core/src/parse.ts b/packages/compiler-core/src/parse.ts
index b72ad028..4d1c5316 100644
--- a/packages/compiler-core/src/par... | 2023-09-11T11:46:58 | 2023-09-11T11:46:58 | {} | NONE |
vuejs | core | 1,717,178,024 | 9,202 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| -------------------------- | ------------------- | ------------------ | ------------------- |
| runtime-dom.global.prod.js | 85.9 kB (**+37 B**) | 32.7 kB (**+8 B**) | 29.5 kB (**+1 B**) |
| v... | 2023-09-13T08:28:10 | 2023-09-13T15:43:03 | {} | NONE |
vuejs | core | 1,718,363,660 | 9,199 | gokaybiz | For Vant, it probably fails because of the data type here.
https://github.com/youzan/vant/blob/fae9a236e2d17bef63ab76527cdd5dc3309cb154/packages/vant/src/tab/Tab.tsx#L96
| 2023-09-13T21:51:10 | 2023-09-13T21:51:10 | {
"+1": 1
} | NONE |
vuejs | core | 1,718,510,484 | 5,270 | edison1105 | merge into #8593 | 2023-09-14T01:14:23 | 2023-09-14T01:14:23 | {} | MEMBER |
vuejs | core | 1,722,230,543 | 9,234 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| -------------------------- | ------- | ------- | ------- |
| runtime-dom.global.prod.js | 85.9 kB | 32.6 kB | 29.5 kB |
| vue.global.prod.js | 132 kB | 49.3 kB | 44.4 kB |
### Usages
| Name | Size |... | 2023-09-16T13:28:00 | 2023-09-16T13:28:00 | {} | NONE |
vuejs | core | 1,722,633,030 | 9,236 | edison1105 | this is by design, v-for render as a fragment.
Check as follows:
```js
import { Fragment } from 'vue'
if(res.type === Fragment){
}
``` | 2023-09-18T01:06:06 | 2023-09-18T01:12:31 | {
"+1": 1
} | MEMBER |
vuejs | core | 1,722,652,637 | 9,236 | qiuqiuma | @edison1105 Thank you for your guidance | 2023-09-18T01:43:22 | 2023-09-18T01:43:22 | {
"+1": 1,
"laugh": 1
} | NONE |
vuejs | core | 1,714,920,314 | 9,190 | netlify[bot] | ### <span aria-hidden="true">❌</span> Deploy Preview for *vue-sfc-playground* failed.
| Name | Link |
|:-:|------------------------|
|<span aria-hidden="true">🔨</span> Latest commit | 6cd0590fae0bba4d9c412c4216e410a08366beac |
|<span aria-hidden="true">🔍</span> Latest deploy log | https://app.netlify.com/sites/vue... | 2023-09-12T03:50:33 | 2023-09-12T03:50:33 | {} | NONE |
vuejs | core | 1,719,259,087 | 4,294 | tombohub | > Hi @sadeghbarati, The type you imported extends `HTMLAttributes`, which extends another interface that extends a type that requires a type parameter. Thus Vue cannot resolve the type. 
Then how can we wra... | 2023-09-14T11:19:02 | 2023-09-14T11:19:02 | {} | NONE |
vuejs | core | 1,721,230,148 | 9,225 | sxzz | Please submit a feature request and have a discussion, before a PR.
| 2023-09-15T12:51:32 | 2023-09-15T12:51:32 | {} | MEMBER |
vuejs | core | 1,712,989,826 | 9,181 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| -------------------------- | ---------------------- | -------------------- | -------------------- |
| runtime-dom.global.prod.js | 87.1 kB (**+1.25 kB**) | 33 kB (**+320 B**) | 29.7 kB ... | 2023-09-11T00:28:56 | 2023-09-11T00:28:56 | {} | NONE |
vuejs | core | 1,714,334,370 | 9,185 | Xowap | Thanks for having a look.
In terms of keeping the comments, this is really not the issue here: they are not needed nor wanted, merely an artifact in my app (which is obviously much larger than this example).
However it seems to me than randomly shuffling DOM elements is not an expected behavior, especially withou... | 2023-09-11T17:53:06 | 2023-09-11T17:53:06 | {} | NONE |
vuejs | core | 1,715,095,073 | 9,185 | edison1105 | This is because your client and server use different versions of `vue.esm-browser.js`
- server-side: `vue.esm-browser.js` (keep comments in dev)
- client-side: `vue.esm-browser.prod.js`(remove comments in prod)
```html
<script type="importmap">
{
"imports": {
"vue": "/node_modules/vue/dist/vue.esm-browser.p... | 2023-09-12T06:43:52 | 2023-09-12T07:06:32 | {} | MEMBER |
vuejs | core | 1,715,369,413 | 5,603 | ivanmem | The workaround works! I wrote a component that uses it.
### FixedTeleport.vue
```vue
<script setup lang="ts">
import { useActivated } from "@/composables/useActivated";
const props = defineProps({
to: String,
disabled: Boolean,
});
const isActivated = useActivated();
</script>
<template>
<Teleport... | 2023-09-12T09:39:27 | 2023-09-12T11:00:53 | {
"+1": 5
} | NONE |
vuejs | core | 1,717,885,876 | 9,202 | linghaoSu | > please add unit test
added unit test | 2023-09-13T15:44:44 | 2023-09-13T15:44:44 | {} | CONTRIBUTOR |
vuejs | core | 1,718,663,667 | 9,206 | Alfred-Skyblue | Before:

Now:

| 2023-09-14T02:40:01 | 2023-09-14T02:40:01 | {} | MEMBER |
vuejs | core | 1,718,745,105 | 4,294 | so1ve | Hi @sadeghbarati, The type you imported extends `HTMLAttributes`, which extends another interface that extends a type that requires a type parameter. Thus Vue cannot resolve the type.

| 2023-09-14T04:26:48 | 2023-09-14T04:26:48 | {
"heart": 2
} | MEMBER |
vuejs | core | 1,718,767,660 | 9,202 | edison1105 | @linghaoSu
I opened a new PR but used another solution (maybe not the right fix).
so just keep this PR open. | 2023-09-14T05:02:11 | 2023-09-14T05:02:11 | {} | MEMBER |
vuejs | core | 1,718,920,838 | 5,386 | yxchai | > I would argue your 5h 'level' describes the most logical and expected behaviour of them all, especially when combining it with `vue-router`. Suppose we have a simple app, with a "home"-page and another page (let's say "about us"). We use `keep-alive` in combination with `vue-router` to keep track of the entire state ... | 2023-09-14T07:35:50 | 2023-09-14T07:35:50 | {} | NONE |
vuejs | core | 1,719,275,593 | 4,314 | padcom | There's also the issue of custom elements with `shadowRoot` inside forms - described [here](https://www.hjorthhansen.dev/shadow-dom-and-forms/) | 2023-09-14T11:30:43 | 2023-09-14T11:30:43 | {} | CONTRIBUTOR |
vuejs | core | 1,712,843,123 | 9,150 | zukreindev | I think I explained my problem very simply. when I open the style tag in the component and delete it back after using it, I have to restart the vite. you can understand it by testing it. | 2023-09-10T15:28:14 | 2023-09-10T15:28:14 | {} | NONE |
vuejs | core | 1,713,703,837 | 9,084 | wusiquan | Change the color space from rgb to lch, the corresponding values should be converted, use [css lch() function](https://developer.mozilla.org/en-US/docs/Web/CSS/color_value/lch)
I found [a useful tool here](https://products.aspose.app/svg/color-converter/rgb-to-lch) | 2023-09-11T11:36:54 | 2023-09-11T11:39:20 | {} | NONE |
vuejs | core | 1,714,891,435 | 4,802 | HXHSHR | delay属性的意思是(loadingComponent)加载组件之前的延迟时间,而不是加载组件之后,当loader中的组件加载时间比delay的时间多时,是不会显示加载组件的,因为只有delay设置的时间过去之后才会显示加载组件。 | 2023-09-12T03:00:30 | 2023-09-12T03:00:30 | {} | NONE |
vuejs | core | 1,715,144,150 | 5,603 | edison1105 | @xeleoss
Manually disabled teleport is a workaround.
[see](https://play.vuejs.org/#__DEV__eNq9Vs1u2zAMfhVNpwTwUiS7eUmLruhhG9oNbXeac3BiunGrSIYlpxkKv/so2fKPYiftDvPFFkVS/MjPFF/pZZpOdjlQn84VbFMWKjgPOCHzLWSPEH1ci20qOHBFzlA+P2sp4VKusyRV+J2gVqbIK4kgTjhcWSuPZBB7ZOOR7wDpJUt24JEHYGDUCxJnYksCihEE9LN2uRZcKhIlMlwxiMhC24/ikEkYN9u... | 2023-09-12T07:22:05 | 2023-09-12T07:22:05 | {
"+1": 3
} | MEMBER |
vuejs | core | 1,715,147,468 | 9,185 | Xowap | Could be, however this bug manifested in Nuxt initially, all I did was reproduce the use case. Should I bring the issue to them then? | 2023-09-12T07:24:43 | 2023-09-12T07:24:43 | {} | NONE |
vuejs | core | 1,717,584,600 | 5,270 | github-actions[bot] | ## Size Report
### Bundles
| File | Size | Gzip | Brotli |
| -------------------------- | ------- | ------- | ------- |
| runtime-dom.global.prod.js | 85.9 kB | 32.6 kB | 29.5 kB |
| vue.global.prod.js | 132 kB | 49.3 kB | 44.4 kB |
### Usages
| Name | Size |... | 2023-09-13T12:58:42 | 2023-09-13T12:58:42 | {} | NONE |
vuejs | core | 1,721,209,723 | 4,635 | jf-niji | Hello Vue team,
Do you have any plan for this feature?
Regards. | 2023-09-15T12:37:43 | 2023-09-15T12:37:43 | {} | NONE |
vuejs | core | 1,721,259,521 | 9,169 | serialine | @so1ve Yes on my machine.
I created a reproduction and found the cause of the problem.
it happens when `"strict": false` in the tsconfig.json. but the minimal requirements condition `"noImplicitThis": true` is configured.
https://github.com/serialine/nuxt-2.17.1-ts | 2023-09-15T13:10:55 | 2023-09-15T13:10:55 | {} | NONE |
vuejs | core | 1,718,504,422 | 9,199 | evanryuu | > For Vant, it probably fails because of the data type here. [youzan/vant@`fae9a23`/packages/vant/src/tab/Tab.tsx#L96](https://github.com/youzan/vant/blob/fae9a236e2d17bef63ab76527cdd5dc3309cb154/packages/vant/src/tab/Tab.tsx#L96)
Thank you! It does look like Vant relies on `normalizeClass` returning string only. | 2023-09-14T01:04:20 | 2023-09-14T01:04:20 | {} | NONE |
vuejs | core | 1,721,186,174 | 9,225 | baiwusanyu-c | I don't quite understand the benefit of doing this. It doesn't improve much compared to the `.value` syntax. | 2023-09-15T12:21:19 | 2023-09-15T12:21:19 | {
"+1": 1
} | MEMBER |
vuejs | core | 1,722,503,406 | 7,987 | posva | Closing due to inactivity. Please open a new issue with a reference to this one if you can follow up with more information. | 2023-09-17T15:37:45 | 2023-09-17T15:37:45 | {} | MEMBER |
vuejs | core | 1,715,403,333 | 9,193 | edison1105 | duplicate of #8373 | 2023-09-12T10:01:22 | 2023-09-12T10:01:22 | {} | MEMBER |
vuejs | core | 1,717,604,948 | 4,294 | OliverRC | I do not see how the PR that addressed this issue actually resolves the underlying problem. I believe this is marked as closed incorrectly by the Github PR process. | 2023-09-13T13:08:39 | 2023-09-13T13:08:39 | {} | NONE |
vuejs | core | 1,720,901,190 | 9,225 | John-Oldman-Wang | 希望支持 jsx children 可以传递 ref,并且 按照 ref 值 作为渲染结果。
```tsx
<div>ref('hello world')</div>
// 渲染结果
<div>hello world </div>
``` | 2023-09-15T08:41:10 | 2023-09-15T08:42:38 | {} | NONE |
vuejs | core | 1,721,195,050 | 9,169 | Disservin | > I am using nuxt 2.17.1 based on vue 2.7, using latest volar extentions.
vue 2.7? | 2023-09-15T12:28:00 | 2023-09-15T12:28:00 | {} | CONTRIBUTOR |
vuejs | core | 1,721,410,461 | 6,152 | xvaara | For those finding this bug here is a workaround component that just skips teleport if it's disabled:
https://play.vuejs.org/#__DEV____SSR__eNqNVDtv2zAQ/iuEFjuALQ3ppCqPpsjQDk2QeIsy0NLZlkuRBEk5Dlz99x5PT9sJkEUk7/ndfXc6BD+0DncVBHGQ2MwU2jELrtLXqSxKrYxjP1Wp2cqokk3CyD+8+SSVSdTYoyU+HJRacAf4YizJix1dGHvkBqRDf74u8ULaqFMnPtx1Ql... | 2023-09-15T14:51:55 | 2023-09-15T14:51:55 | {} | NONE |
vuejs | core | 1,714,914,661 | 9,181 | haoqunjiang | /ecosystem-ci run | 2023-09-12T03:40:22 | 2023-09-12T03:40:22 | {
"+1": 1
} | MEMBER |
vuejs | core | 1,715,116,012 | 9,191 | Alfred-Skyblue | It is expected that the watch newVal and oldVal of the object are the same, because the Vue object type saves a reference, not a value. When you modify the reference of the object, you can get different newVal and oldVal. When you modify the object properties, The obtained newVal and oldVal are the same because both va... | 2023-09-12T07:01:22 | 2023-09-12T07:01:22 | {} | MEMBER |
vuejs | core | 1,715,214,347 | 7,121 | laterdayi | @yyx990803 No updates yet?
| 2023-09-12T08:08:16 | 2023-09-12T08:08:16 | {} | NONE |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.