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,733,937,415
7,836
xarthurx
Any updates on this PR? Math support is really needed.
2023-09-25T15:20:33
2023-09-25T15:20:33
{}
NONE
vuejs
core
1,736,953,480
9,264
Disservin
Ah nice, seems to be related, thanks for the smaller reproduction! I initially encountered this also with my pinia store, but then I figured out that it isnt related to pinia. Weirdly enough you can get rid of the error in my reproduction if you do these changes ```diff - <component - :is="getComponent(...
2023-09-27T08:36:38
2023-09-27T08:36:38
{}
CONTRIBUTOR
vuejs
core
1,737,164,026
8,304
skirtles-code
Would it be possible to add a test?
2023-09-27T10:53:24
2023-09-27T10:53:24
{}
CONTRIBUTOR
vuejs
core
1,732,789,902
9,287
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-25T02:00:44
2023-09-25T02:00:44
{}
NONE
vuejs
core
1,733,211,313
9,285
edison1105
@memsenpai Actually, I am not sure if it is a bug. let's wait for others' input.
2023-09-25T08:57:13
2023-09-25T08:57:13
{ "heart": 2 }
MEMBER
vuejs
core
1,734,718,036
9,165
yyx990803
Runtime errors should also be handled (`runtime-core/src/errorHandling.ts`)
2023-09-26T02:05:46
2023-09-26T02:06:25
{ "eyes": 1 }
MEMBER
vuejs
core
1,735,303,994
9,261
yangmingshan
I'm not sure if bundler and minifier can handle it perfectly (cross module boundary). But yeah, I get the idea.
2023-09-26T10:58:07
2023-09-26T11:01:11
{}
CONTRIBUTOR
vuejs
core
1,736,567,837
9,301
github-actions[bot]
## Size Report ### Bundles | File | Size | Gzip | Brotli | | -------------------------- | ------------------- | ------------------- | ------------------- | | runtime-dom.global.prod.js | 85.9 kB (**+24 B**) | 32.7 kB (**+10 B**) | 29.5 kB (**+18 B**) | ...
2023-09-27T02:20:06
2023-09-27T02:20:06
{}
NONE
vuejs
core
1,738,373,194
5,912
johnsoncodehk
@skirtles-code fixed by [`afd7c54` (#5912)](https://github.com/vuejs/core/pull/5912/commits/afd7c54f9f3083c0abf9d14654eb5fb76dde17a5), thanks!
2023-09-28T03:11:01
2023-09-28T03:11:41
{}
MEMBER
vuejs
core
1,738,440,284
9,134
edison1105
This PR seems not the proper fix. - https://github.com/vuejs/core/issues/9071 The root cause is that the teleport node should not be an anchor. I feel if the nextSibling is a teleport node should be skipped in `getNextHostNode`. - https://github.com/vuejs/core/issues/8105 The root cause is that the anchor is unmoun...
2023-09-28T05:11:28
2023-09-28T13:56:38
{}
MEMBER
vuejs
core
1,730,978,582
9,265
sxzz
Can we trigger it now? Or have to wait until the next week? @sodatea
2023-09-22T08:00:24
2023-09-22T08:00:24
{}
MEMBER
vuejs
core
1,731,715,610
6,463
alexovn
I have same issue, so only this answer helped me. Hope it will be fixed soon > Same issue for me with Nuxt 3.1.1. > > Changing line 35 of @vue/runtime-dom `runtime-dom.esm-bundler.js` to `parentNode: node => node ? node.parentNode : null,` seems to fix the issue though I am not sure what downstream effects this c...
2023-09-22T16:33:59
2023-09-22T16:33:59
{ "+1": 2 }
NONE
vuejs
core
1,732,224,689
9,281
so1ve
This is a limitation in typescript. These exposed variables cannot be known in type-level since they are bound to your runtime code
2023-09-23T06:00:19
2023-09-23T06:02:23
{ "+1": 1 }
MEMBER
vuejs
core
1,732,291,450
9,233
Alfred-Skyblue
This is not a memory leak. `computed` properties are cached, so when you modify the variables that a `computed` property depends on, it doesn't immediately change the `computed` property's value. In fact, it continues to cache the value from the last time you accessed it until the next `get` call, at which point it get...
2023-09-23T11:49:18
2023-09-23T11:49:18
{ "+1": 2 }
MEMBER
vuejs
core
1,730,889,778
1,600
yanghoxom
fix this issue by compilerOptions.whitespace: 'preserve' will conflict `class and style merging` in vue 3 https://github.com/vuejs/core/issues/9285
2023-09-22T06:45:58
2023-09-25T00:59:57
{}
NONE
vuejs
core
1,733,508,545
9,281
so1ve
@avinean No, he means: typescript cannot infer types from your runtime usage. For example: ```ts // We call this function to expose some thing declare function expose<T>(exposed: T): void; expose({ xxx: 1 }) // But we can't know we exposed a variable called `xxx` in type level. Thus we are unable to add it t...
2023-09-25T11:49:02
2023-09-25T11:50:27
{ "+1": 1 }
MEMBER
vuejs
core
1,735,056,647
9,206
Alfred-Skyblue
This feature allows me to use[ `IntersectionObserver`](https://developer.mozilla.org/en-US/docs/Web/API/Intersection_Observer_API) to control updates, which can significantly improve performance in the project.
2023-09-26T08:19:45
2023-09-27T07:58:05
{ "hooray": 1 }
MEMBER
vuejs
core
1,737,182,017
8,952
DaniilIsupov
Typescript allows me to use Conditional Types, but Vue doesn't allow me to do this
2023-09-27T11:06:12
2023-09-27T11:06:12
{ "+1": 6 }
NONE
vuejs
core
1,738,257,692
5,912
skirtles-code
I think there's a problem with this example: [SFC Playground - 6af9492](https://deploy-preview-5912--vue-sfc-playground.netlify.app/#eNqNUk2P0zAQ/SuzviSVolRLb6u04kN7ACFAsJwwh5BOU+86dmSPS6Uo/52xQ0KRVtXe7Jn3nt+88SDe9H15CijuROUbp3oCjxT6nTSq660jGMDhoYDGdn0g3MMIB2c7yJiUSSNNY40nUISdh23E5iZovbpo+Y+23jNzu4jk+Qq2OxikAa4ZbzWW...
2023-09-28T00:00:15
2023-09-28T00:00:15
{}
CONTRIBUTOR
vuejs
core
1,730,981,042
9,263
yangmingshan
It seems like current there is no easy way to transform `enum` to a simple object (@xiaoxiangmoe used a custom rollup plugin). Let's see if esbuild can help. https://github.com/evanw/esbuild/issues/3402
2023-09-22T08:02:11
2023-09-22T08:02:11
{}
CONTRIBUTOR
vuejs
core
1,732,013,424
9,134
coreyworrell
Testing this locally after coming across #8105 and the fix doesn't seem to work in my case. I'm still getting an error: `Uncaught TypeError: vnode is null` with a trace ending at `move webpack://site/./node_modules/@vue/runtime-core/dist/runtime-core.esm-bundler.js?:6193`, which is called by that `unmount` function you...
2023-09-22T20:44:16
2023-09-22T20:44:52
{}
NONE
vuejs
core
1,732,784,987
9,285
edison1105
I did not get your point or see anything related to `whitespace`. Do you mean the `class-from-parent` does not fall through to the `HasComment.vue` component? ![image](https://github.com/vuejs/core/assets/3705199/0db5c350-4f86-4c0d-a2fe-40044f7011e8) if so, this is the expected behavior. here is a warning: ![image]...
2023-09-25T01:53:31
2023-09-25T01:56:01
{}
MEMBER
vuejs
core
1,733,563,787
9,281
avinean
@baiwusanyu-c @so1ve But there is more important question. Are you going to support and develop render-functions in terms of TS support? Or it's something that is going to be deprecated for everyday usage?
2023-09-25T12:09:54
2023-09-25T12:09:54
{}
NONE
vuejs
core
1,734,297,426
7,836
sto3psl
> Any updates on this PR? Math support is really needed. My hope is that it lands whenever Vue 3.4 is released. No idea when that's planned but there is an open PR which is referenced above.
2023-09-25T18:55:36
2023-09-25T18:55:36
{}
CONTRIBUTOR
vuejs
core
1,734,881,398
9,263
xiaoxiangmoe
@yangmingshan No, there will have no type and runtime mismatch. See my latest update <img width="532" alt="image" src="https://github.com/vuejs/core/assets/8111351/a24a9034-384a-4dff-8fb4-6f048ea87d61">
2023-09-26T06:02:42
2023-09-26T06:02:42
{}
CONTRIBUTOR
vuejs
core
1,735,279,125
9,261
xiaoxiangmoe
@yangmingshan It's not about vue's size. It's about the size of application which using the new export enum.
2023-09-26T10:39:54
2023-09-26T10:39:54
{}
CONTRIBUTOR
vuejs
core
1,736,617,189
5,912
johnsoncodehk
> also fix #6018 @johnsoncodehk Just merge the test from #6037
2023-09-27T03:29:17
2023-09-27T03:29:17
{ "+1": 1 }
MEMBER
vuejs
core
1,736,902,573
5,952
haoqunjiang
- This is a p4 issue, meaning we'll prioritize it when reviewing and merging the next batch of PRs. - But this PR, in its current status, isn't ready for merge (or even for review) because it lacks tests. Besides, the branch is far behind the current main branch. The code must be rebased first. - If you are really bo...
2023-09-27T08:03:39
2023-09-27T08:03:39
{ "heart": 5 }
MEMBER
vuejs
core
1,738,856,388
9,311
github-actions[bot]
## Size Report ### Bundles | File | Size | Gzip | Brotli | | -------------------------- | ------------------- | ------------------- | ------------------- | | runtime-dom.global.prod.js | 85.9 kB (**+59 B**) | 32.7 kB (**+18 B**) | 29.5 kB (**+13 B**) | ...
2023-09-28T10:06:32
2023-09-28T10:06:32
{}
NONE
vuejs
core
1,739,645,558
9,261
sxzz
Should we always export enums? The bundle size of the browser version increased ~750b /cc @yyx990803
2023-09-28T16:23:56
2023-09-28T16:23:56
{}
MEMBER
vuejs
core
1,732,863,102
9,289
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-25T03:52:10
2023-09-25T03:52:10
{}
NONE
vuejs
core
1,735,450,235
9,263
yangmingshan
Better is better, complexity is no excuse for libraries. I prefer @xiaoxiangmoe's PR, I'm closing this one.
2023-09-26T12:30:48
2023-09-26T12:30:48
{}
CONTRIBUTOR
vuejs
core
1,735,539,610
9,261
sxzz
> @sxzz Can we rerun the size bot? So we can compare the size. Done.
2023-09-26T13:25:27
2023-09-26T13:25:27
{}
MEMBER
vuejs
core
1,736,557,379
9,300
zm-john
这是来自QQ邮箱的假期自动回复邮件。   您好,我最近正在休假中,无法亲自回复您的邮件。我将在假期结束后,尽快给您回复。
2023-09-27T02:05:28
2023-09-27T02:05:28
{}
NONE
vuejs
core
1,737,253,923
9,303
baiwusanyu-c
I think this is the design of `script setup` 1. ``` <template> <start-conversation></start-conversation> <start-conversation/> <startConversation/> <StartConversation/> </template> <script setup> import StartConversation from './StartConversation.vue'; const startConversation = () => { }; </scrip...
2023-09-27T12:00:00
2023-09-27T12:00:00
{}
MEMBER
vuejs
core
1,739,798,630
8,368
starredev
> I currently have a (bad) workaround for this. I simply split up my script from my vue file and just import it in the vue file, for example: > > `MyComponent.vue` > > ``` > <script> > import MyComponent from "./MyComponent.coffee" > export default MyComponent > </script> > > <template> > <p @click='onCli...
2023-09-28T18:14:37
2023-09-28T18:14:37
{}
NONE
vuejs
core
1,735,240,631
9,261
yangmingshan
@sxzz Can we rerun the size bot? So we can compare the size.
2023-09-26T10:12:53
2023-09-26T10:15:19
{}
CONTRIBUTOR
vuejs
core
1,736,951,612
5,952
stoner-w
@sodatea Dear Vue team members. I would like to inquire if there is a plan for merging PRs? While I have been in the process of upgrading to Vue 3, I have encountered several issues, and some of these issues could be resolved through specific PRs. However, these PRs have remained in a state of suspension for some ti...
2023-09-27T08:35:26
2023-09-27T08:35:26
{}
NONE
vuejs
core
1,498,711,511
5,513
laurensV
Any updates on this issue? Would be great if we can just use page transitions without having to worry about redirecting too fast.. (https://github.com/nuxt/nuxt/issues/13350)
2023-04-06T08:53:00
2023-04-06T08:53:00
{}
NONE
vuejs
core
1,498,751,016
8,008
Rednas83
It should be quite obvious. In vue2 it was possible to call a function by arguments. `this[function][arguments] // Only works for local methods and global functions provided by a mixin` In vue3 there is no mixins anymore. There is composables and plugins. Therefore using `this` will not work for vue3, also not w...
2023-04-06T09:21:18
2023-04-06T09:22:15
{}
NONE
vuejs
core
1,499,009,052
7,942
vercel[bot]
[vc]: #rEC1RinnNfxDcC8kiqFvOe0/XcBQMpl6NRbVbZwzp+s=:eyJpc01vbm9yZXBvIjp0cnVlLCJ0eXBlIjoiZ2l0aHViIiwicHJvamVjdHMiOlt7Im5hbWUiOiJzZmMtcGxheWdyb3VuZCIsInJvb3REaXJlY3RvcnkiOiJwYWNrYWdlcy9zZmMtcGxheWdyb3VuZCIsImluc3BlY3RvclVybCI6Imh0dHBzOi8vdmVyY2VsLmNvbS92dWVqcy9zZmMtcGxheWdyb3VuZC9IMnVLRE1xTnZMRXNEWWtLZm1RYWVwQzZXdDE3Iiwi...
2023-04-06T12:43:50
2023-04-06T12:44:40
{}
NONE
vuejs
core
1,501,490,007
6,581
haoqunjiang
See https://github.com/vuejs/core/issues/6580#issuecomment-1501485144 The PR does have fixed an edge case so I leave it open. But as said in the linked issue, I'm not even sure if it's worth fixing. So I marked this as `p1-chore`, and will only review it when we have much spare time.
2023-04-10T07:16:22
2023-04-10T07:16:22
{}
MEMBER
vuejs
core
1,502,178,345
8,059
LinusBorg
`.slide-enter-to` https://v3-migration.vuejs.org/breaking-changes/transition.html
2023-04-10T18:54:45
2023-04-10T18:54:45
{}
MEMBER
vuejs
core
1,497,611,116
5,912
skirtles-code
> > The underlying problem here is that, in some cases, computed properties have now switched from being lazily evaluated to eagerly evaluated. > > Not really, if you find that PR causing this problem, can you provide minimal reproduction or contribute a test case? That is what my example shows. That is why it ca...
2023-04-05T14:42:56
2023-04-05T14:42:56
{}
CONTRIBUTOR
vuejs
core
1,499,009,071
7,716
vercel[bot]
[vc]: #lsNjLlEWvJ44YgFEp7XJJQDhq9qlvAmpfyOoBZvPELA=:eyJpc01vbm9yZXBvIjp0cnVlLCJ0eXBlIjoiZ2l0aHViIiwicHJvamVjdHMiOlt7Im5hbWUiOiJzZmMtcGxheWdyb3VuZCIsInJvb3REaXJlY3RvcnkiOiJwYWNrYWdlcy9zZmMtcGxheWdyb3VuZCIsImluc3BlY3RvclVybCI6Imh0dHBzOi8vdmVyY2VsLmNvbS92dWVqcy9zZmMtcGxheWdyb3VuZC8zZzN2OEY3NkgzUXBLdGdFbVB3YzU3OFV1cERGIiwi...
2023-04-06T12:43:51
2023-04-06T12:44:14
{}
NONE
vuejs
core
1,499,009,121
7,151
vercel[bot]
[vc]: #MGKSkK89X01oQh8/vHooemHQ+dIXRfIzzXvWcA+8mYg=:eyJpc01vbm9yZXBvIjp0cnVlLCJ0eXBlIjoiZ2l0aHViIiwicHJvamVjdHMiOlt7Im5hbWUiOiJzZmMtcGxheWdyb3VuZCIsInJvb3REaXJlY3RvcnkiOiJwYWNrYWdlcy9zZmMtcGxheWdyb3VuZCIsImluc3BlY3RvclVybCI6Imh0dHBzOi8vdmVyY2VsLmNvbS92dWVqcy9zZmMtcGxheWdyb3VuZC9BOW9CZUdIWkR4dkQzdUhCb3lCWXNyQXcxcEpYIiwi...
2023-04-06T12:43:53
2023-04-06T12:44:20
{}
NONE
vuejs
core
1,499,009,053
7,557
vercel[bot]
[vc]: #IpZPo+dzCODtcaw3tOgQO8AutJ63tB3EjAkfp9lPDzs=:eyJpc01vbm9yZXBvIjp0cnVlLCJ0eXBlIjoiZ2l0aHViIiwicHJvamVjdHMiOlt7Im5hbWUiOiJzZmMtcGxheWdyb3VuZCIsInJvb3REaXJlY3RvcnkiOiJwYWNrYWdlcy9zZmMtcGxheWdyb3VuZCIsImluc3BlY3RvclVybCI6Imh0dHBzOi8vdmVyY2VsLmNvbS92dWVqcy9zZmMtcGxheWdyb3VuZC9Bd0pKYUdMYVA4ZjljYmFmbURjRm1kOG1vTE1TIiwi...
2023-04-06T12:43:50
2023-04-06T12:44:31
{}
NONE
vuejs
core
1,499,009,051
7,502
vercel[bot]
[vc]: #IrM817vIB0sNquxL67FLz9pbcdaBQRySmCLr9cCD4cs=:eyJpc01vbm9yZXBvIjp0cnVlLCJ0eXBlIjoiZ2l0aHViIiwicHJvamVjdHMiOlt7Im5hbWUiOiJzZmMtcGxheWdyb3VuZCIsInJvb3REaXJlY3RvcnkiOiJwYWNrYWdlcy9zZmMtcGxheWdyb3VuZCIsImluc3BlY3RvclVybCI6Imh0dHBzOi8vdmVyY2VsLmNvbS92dWVqcy9zZmMtcGxheWdyb3VuZC82VHpSWEFiVXRVRzc1Z0R2ZDRCVlA1Y2lHZGJUIiwi...
2023-04-06T12:43:50
2023-04-06T12:44:37
{}
NONE
vuejs
core
1,498,875,048
8,008
LinusBorg
```js // imagine these as globally shared functions that you might have added through a global mixin when using Options API. export const useSum () => (a, b) => a +b export const useMultiplication () => (a, b) => a * b ``` ```html <script setup> import { useSum, useMultiplication } from '../composables/math.j...
2023-04-06T10:52:53
2023-04-07T10:26:55
{}
MEMBER
vuejs
core
1,500,297,472
5,897
Michael-E-Rose
Yes of course you're the authority to tell us how did want to be cited. Who else could tell us? If you don't tell us, people come up with their own solutions how to cite you, it don't cite you at all. Some examples: - https://networkx.org/documentation/networkx-1.10/reference/citing.html - https://seaborn.pydat...
2023-04-07T13:39:01
2023-04-07T13:39:01
{}
NONE
vuejs
core
1,501,350,446
3,399
tryforceful
Still no updates since Aug 2022 I suppose 🙃
2023-04-10T03:34:02
2023-04-10T03:34:02
{ "confused": 8 }
NONE
vuejs
core
1,501,485,144
6,580
haoqunjiang
Default props do not work in the way as `MyComponent(props = {})`. Rather, it's more recommended to set the `props` property of the functional component https://vuejs.org/guide/extras/render-function.html#functional-components `MyComponent({ msg = 'hello' })` works, too. It is also widely recommended to enable the...
2023-04-10T07:10:40
2023-04-10T07:10:40
{}
MEMBER
vuejs
core
1,502,552,383
7,286
yxchai
@yyx990803 , Hi Evan, understanding how busy you are, just want to make sure this PR catch your eyes and if possible, maybe push this a little bit. Thanks!
2023-04-11T01:24:01
2023-04-11T01:24:01
{ "+1": 2 }
NONE
vuejs
core
1,504,216,180
7,678
himself65
> @Himself65 may I draw your attention to this open issue with an available fix? I would love to see this merged soon. /cc @sxzz
2023-04-11T22:36:51
2023-04-11T22:36:51
{ "eyes": 4 }
CONTRIBUTOR
vuejs
core
1,497,562,349
8,036
rikzwarthoff
> > Question is, is this by design? > > It is. > > > However I'm forcing a trigger so I would expect it to update. > > * The code that depends on the ref does update: `App.vue` > > * `Child.vue` does not depend on this ref. it only receives a plain object as props and has no idea that this value cam...
2023-04-05T14:13:00
2023-04-05T14:13:00
{}
NONE
vuejs
core
1,497,583,272
8,034
LinusBorg
refs are unwrapped in templates, that's not going to change in the current major version at least. You can only *work around* that. i.e. by using a plain wrapper object (which is not being unwrapped). Also, custom directives are not set up to deal with reactive effects from `watch()` etc. calls to watch() will not b...
2023-04-05T14:26:29
2023-04-05T14:31:29
{ "heart": 1 }
MEMBER
vuejs
core
1,497,605,774
5,912
johnsoncodehk
> The underlying problem here is that, in some cases, computed properties have now switched from being lazily evaluated to eagerly evaluated. Not really, if you find that PR causing this problem, can you provide minimal reproduction or contribute a test case?
2023-04-05T14:39:26
2023-04-05T14:39:57
{}
MEMBER
vuejs
core
1,498,217,808
8,018
sxzz
@sqal Thanks for reviewing. The first issue can be optimized but it only happened in development mode. So now it's not very worth improving it. The second issue is fixed now.
2023-04-05T22:07:01
2023-04-05T22:07:01
{ "+1": 1 }
MEMBER
vuejs
core
1,498,800,773
8,008
LinusBorg
> In vue3 there is no mixins anymore. There is composables and plugins. Therefore using this will not work for vue3, also not with the options api unless it's a local method. There *are* mixins in Vue 3, but only for Options API, because Composition API + composables is meant to improve on Options API + mixins, whe...
2023-04-06T10:00:42
2023-04-06T10:00:42
{}
MEMBER
vuejs
core
1,500,072,183
7,980
haoqunjiang
I don't think the corresponding PR is the right solution too. As for the issue, I thought there was a bit of room for improvement here. Say, the weird `computed()` workaround; and clearer guidance might be helpful. So I added the p2 label to revisit it later. I have removed the label now that it causes confusion wi...
2023-04-07T08:34:16
2023-04-07T08:34:16
{}
MEMBER
vuejs
core
1,500,301,271
5,897
LinusBorg
Those are good references, thanks. Then again, all of these are pointing to actual publications in journals or to books (We don't have those). Yet these are citation "templates" are used when citing a software project as a whole because someone used *the software* for their paper in some way? So when someone u...
2023-04-07T13:43:37
2023-04-07T13:50:30
{}
MEMBER
vuejs
core
1,499,103,056
8,016
ipalestine
this problem is in quasar ssr mode with vue/apollo-composable and this dependencies are required
2023-04-06T13:55:02
2023-04-06T13:55:26
{}
NONE
vuejs
core
1,500,346,357
7,980
dqhieuu
> I'm not sure what the issue is here. Functional components are components, and as a matter of design principle, scoped styles from a parent component should _not_ affect the elements of a child component[1](#user-content-fn-1-af4938b860169a988194c1644b2489ca). > > So what you shared in the codesandbox works as des...
2023-04-07T14:35:59
2023-04-07T14:35:59
{}
NONE
vuejs
core
1,500,916,786
7,881
RihanArfan
I'm very interested in this too and given it some thought. Since the current `<transition>` element is used for making regular CSS transitions, I think the View Transition API should be a separate component which could be used with the vue-router. Also worth noting it's being added to Nuxt :partying_face: https://gi...
2023-04-08T15:38:35
2023-04-08T15:38:35
{ "+1": 1 }
NONE
vuejs
core
1,502,605,042
8,006
gcaaa31928
@sodatea can you have a look on this issue. Just remind me if it need to have extra information
2023-04-11T02:32:27
2023-04-11T02:32:27
{}
CONTRIBUTOR
vuejs
core
1,501,071,709
5,657
Doeke
@soylomass No I don't think it's fixed. I made a new thread here: https://github.com/vuejs/core/issues/7921, the error is slightly different depending on how it is triggered but I think it's the same underlying issue causing a "Cannot read properties of null" in HMR If it doesn't get fixed soon I'll have to copy...
2023-04-09T08:08:42
2023-04-11T10:04:05
{ "+1": 2 }
NONE
vuejs
core
1,503,818,390
4,404
jflemingsignifi
There is an error when trying to build this ``` D:\vue-next\packages\reactivity\src\index.ts → packages\reactivity\dist\reactivity.global.js... [!] (plugin rpt2) Error: D:/vue-next/packages/runtime-dom/src/apiCustomElement.ts(25,31): semantic error TS7016: Could not find a declaration file for module 'html-parsed-el...
2023-04-11T17:31:38
2023-04-11T18:00:54
{}
NONE
vuejs
core
1,503,906,742
7,678
lehni
@Himself65 may I draw your attention to this open issue with an available fix? I would love to see this merged soon.
2023-04-11T18:44:28
2023-04-11T18:44:28
{}
CONTRIBUTOR
vuejs
core
1,497,492,267
8,036
LinusBorg
> Question is, is this by design? It is. > However I'm forcing a trigger so I would expect it to update. * The code that depends on the ref does update: `App.vue` * `Child.vue` does not depend on this ref. it only receives a plain object as props and has no idea that this value came from a ref that was trig...
2023-04-05T13:31:38
2023-04-05T13:32:08
{}
MEMBER
vuejs
core
1,499,009,068
7,108
vercel[bot]
[vc]: #qRtP/5z7CB6oq0FfNiru4HG2UTsJLpkBLlwSGatdMzY=:eyJpc01vbm9yZXBvIjp0cnVlLCJ0eXBlIjoiZ2l0aHViIiwicHJvamVjdHMiOlt7Im5hbWUiOiJzZmMtcGxheWdyb3VuZCIsInJvb3REaXJlY3RvcnkiOiJwYWNrYWdlcy9zZmMtcGxheWdyb3VuZCIsImluc3BlY3RvclVybCI6Imh0dHBzOi8vdmVyY2VsLmNvbS92dWVqcy9zZmMtcGxheWdyb3VuZC85UlNKS2VvV2tnRmt0VFJqeWN3eFJxaHVRVThEIiwi...
2023-04-06T12:43:51
2023-04-06T12:44:02
{}
NONE
vuejs
core
1,500,063,837
7,980
LinusBorg
I'm not sure what the issue is here. Functional components are components, and as a matter of design principle, scoped styles from a parent component should *not* affect the elements of a child component[^1]. So what you shared in the codesandbox works as designed as far as I'm concerned. And changing that behavior ...
2023-04-07T08:23:07
2023-04-07T08:27:14
{}
MEMBER
vuejs
core
1,500,152,265
8,008
Rednas83
@LinusBorg This workaround still requires declaring functions. Why not consider support for this functionality which is also possible with vue2 and js? The workaround should be without the arguments when declaring the functions. @LinusBorg Can you update? ``` const mathMethods = { sum: useSum // Returns the fun...
2023-04-07T10:18:09
2023-04-07T10:18:09
{}
NONE
vuejs
core
1,497,596,875
5,912
skirtles-code
> @skirtles-code Thanks for reviewing it, it is not a bug, users shouldn't assume that `c` and `d` is knowledge sharing, if `c` behaves dependent on `d` dependencies, [`d` should be included by `c`](https://deploy-preview-5912--vue-sfc-playground.netlify.app/#eNqlUUtuwjAQvcrIG4KE7YLURaOA1Ht4E+IJpHJsy3aCEMrdO5BAQytWXUVv...
2023-04-05T14:34:07
2023-04-05T14:34:07
{}
CONTRIBUTOR
vuejs
core
1,499,009,073
7,457
vercel[bot]
[vc]: #yCL5lTg9mBbtFHj1Ipt91+SDApXGpinq/Ugq7IZUOF4=:eyJpc01vbm9yZXBvIjp0cnVlLCJ0eXBlIjoiZ2l0aHViIiwicHJvamVjdHMiOlt7Im5hbWUiOiJzZmMtcGxheWdyb3VuZCIsInJvb3REaXJlY3RvcnkiOiJwYWNrYWdlcy9zZmMtcGxheWdyb3VuZCIsImluc3BlY3RvclVybCI6Imh0dHBzOi8vdmVyY2VsLmNvbS92dWVqcy9zZmMtcGxheWdyb3VuZC9HWlBXaUhDYng5WVV2cXBybXF0TWNKY3N1MjVHIiwi...
2023-04-06T12:43:51
2023-04-06T12:44:17
{}
NONE
vuejs
core
1,499,009,055
6,224
vercel[bot]
[vc]: #xQHCFlh8hvYB5kDNd4BqE0Onld6XBj/zYXMEtMu9a+o=:eyJpc01vbm9yZXBvIjp0cnVlLCJ0eXBlIjoiZ2l0aHViIiwicHJvamVjdHMiOlt7Im5hbWUiOiJzZmMtcGxheWdyb3VuZCIsInJvb3REaXJlY3RvcnkiOiJwYWNrYWdlcy9zZmMtcGxheWdyb3VuZCIsImluc3BlY3RvclVybCI6Imh0dHBzOi8vdmVyY2VsLmNvbS92dWVqcy9zZmMtcGxheWdyb3VuZC9FUHRzcWFkQjRCWVFNQ0xtVmEyQUJoQU1lZGM0Iiwi...
2023-04-06T12:43:50
2023-04-06T12:44:49
{}
NONE
vuejs
core
1,499,337,288
7,278
rizen
I'm having a similar problem with generics creating unwanted UnwrapRefs . Here's a reproduction in case it helps. https://www.typescriptlang.org/play?ssl=46&ssc=50&pln=46&pc=80#code/JYWwDg9gTgLgBAbzgEwKYDNgDtUGUbSpwC+c6UEIcA5GNsAIbUDcAUKJLHDAJ5hFIAqlgDuUBmABKGEmQpVqANwCuqaq1a9+cAIJYeAFQYAjADZEAvIlZxbcAM4xl6dAHVUAEQ...
2023-04-06T16:37:41
2023-04-06T16:37:41
{}
NONE
vuejs
core
1,499,934,477
8,046
vercel[bot]
[vc]: #sanPWoTtf4HdsWe3UOBtIv2lJQMvFEYGDCq1MJoG/vw=:eyJpc01vbm9yZXBvIjp0cnVlLCJ0eXBlIjoiZ2l0aHViIiwicHJvamVjdHMiOlt7Im5hbWUiOiJzZmMtcGxheWdyb3VuZCIsInJvb3REaXJlY3RvcnkiOiJwYWNrYWdlcy9zZmMtcGxheWdyb3VuZCIsImluc3BlY3RvclVybCI6Imh0dHBzOi8vdmVyY2VsLmNvbS92dWVqcy9zZmMtcGxheWdyb3VuZC9GSldyWFF2U1NKQndDSHBTcXlWaWIzNHdDVkxRIiwi...
2023-04-07T04:57:05
2023-04-07T04:57:08
{}
NONE
vuejs
core
1,499,956,477
5,897
njzjz
Hi, In all of `package.json` files, I could find `Evan You` in the field of `author`. Is it ok to only list him as the author? https://github.com/vuejs/core/blob/3b02c27e6d30d9f27210c0e76bc22619eb8bc86d/packages/vue/package.json#L77
2023-04-07T05:39:15
2023-04-07T05:39:15
{}
NONE
vuejs
core
1,501,602,346
8,048
antfu
Test added, `resolveDynamicModel` updated.
2023-04-10T09:26:36
2023-04-10T09:26:36
{}
MEMBER
vuejs
core
1,502,606,702
8,059
handhikadj
I'd appreciate if you would modify the Vue 3 version to make it work. thanks anyway (tho I don't think you solved any issue here)
2023-04-11T02:35:15
2023-04-11T02:35:15
{}
NONE
vuejs
core
1,497,254,031
5,912
vue-bot
📝 Ran ecosystem CI: [Open](https://github.com//vuejs/ecosystem-ci/actions/runs/4617442812) | suite | result | |-------|--------| | [naive-ui](https://github.com/vuejs/ecosystem-ci/actions/runs/4617442812/jobs/8163711436) | :x: failure | | [nuxt](https://github.com/vuejs/ecosystem-ci/actions/runs/4617442812/jobs/8163...
2023-04-05T10:20:24
2023-04-06T03:26:36
{}
CONTRIBUTOR
vuejs
core
1,499,009,082
7,730
vercel[bot]
[vc]: #nYuRKlFDxLxXek09C1GI5Q24YhS3w44bfdPPzBEc64w=:eyJpc01vbm9yZXBvIjp0cnVlLCJ0eXBlIjoiZ2l0aHViIiwicHJvamVjdHMiOlt7Im5hbWUiOiJzZmMtcGxheWdyb3VuZCIsInJvb3REaXJlY3RvcnkiOiJwYWNrYWdlcy9zZmMtcGxheWdyb3VuZCIsImluc3BlY3RvclVybCI6Imh0dHBzOi8vdmVyY2VsLmNvbS92dWVqcy9zZmMtcGxheWdyb3VuZC8zN1BQZ0FqNFVnbUNRV2YyaWhZeGo0dEdBUXVaIiwi...
2023-04-06T12:43:51
2023-04-06T12:44:28
{}
NONE
vuejs
core
1,500,065,086
7,985
LinusBorg
I don't think this PR solves a bug - it breaks a documented pattern. Please see https://github.com/vuejs/core/issues/7980#issuecomment-1500063837
2023-04-07T08:24:50
2023-04-07T08:24:50
{}
MEMBER
vuejs
core
1,500,157,479
8,008
LinusBorg
> This workaround still requires declaring functions. Not sure what that means. When you write a mixin, you also have to write the mixin. Here, I write composables instead. Is this about the need to explicitly import and call them? That's kind of the point, being explicit. > Why not consider support for this fun...
2023-04-07T10:26:05
2023-04-07T10:27:32
{}
MEMBER
vuejs
core
1,500,793,700
6,100
mmis1000
It's almost one year after I opened this pull request. It shouldn't really take that long for a pull request that comes with a proper reproduction and test. And let alone it is just a 4 line change patch. 🫤
2023-04-08T05:09:58
2023-04-08T05:09:58
{ "confused": 2 }
CONTRIBUTOR
vuejs
core
1,500,972,230
7,267
GuyFox70
The same problem with Firefox 68
2023-04-08T20:30:14
2023-04-08T20:30:14
{ "confused": 1 }
NONE
vuejs
core
1,501,473,955
6,882
DearGu
> @DearGu 你好,请问你解决这个问题了,我也遇到了这个问题,只要是用InstanceType就会报错 我暂时是屏蔽对应的ts错误来处理的 还没找到解决方法
2023-04-10T07:00:23
2023-04-10T07:00:23
{}
NONE
vuejs
core
1,497,727,036
5,912
johnsoncodehk
Fixed by [`88d91db` (#5912)](https://github.com/vuejs/core/pull/5912/commits/88d91dbea922e7b771f2d8ef7970cece4e6e62bd)
2023-04-05T15:53:13
2023-04-05T15:53:13
{}
MEMBER
vuejs
core
1,450,683,062
5,912
johnsoncodehk
@skirtles-code Thanks for reviewing it, ~~it is not a bug, users shouldn't assume that `c` and `d` is knowledge sharing, if `c` behaves dependent on `d` dependencies, [`d` should be included by `c`](https://deploy-preview-5912--vue-sfc-playground.netlify.app/#eNqlUUtuwjAQvcrIG4KE7YLURaOA1Ht4E+IJpHJsy3aCEMrdO5BAQytWXUVv...
2023-03-01T18:47:21
2023-04-05T16:38:05
{}
MEMBER
vuejs
core
1,498,441,028
5,912
vue-bot
📝 Ran ecosystem CI: [Open](https://github.com//vuejs/ecosystem-ci/actions/runs/4625146077) | suite | result | |-------|--------| | [naive-ui](https://github.com/vuejs/ecosystem-ci/actions/runs/4625146077/jobs/8180633686) | :x: failure | | [nuxt](https://github.com/vuejs/ecosystem-ci/actions/runs/4625146077/jobs/8180...
2023-04-06T03:27:13
2023-04-06T03:35:00
{}
CONTRIBUTOR
vuejs
core
1,499,009,089
7,475
vercel[bot]
[vc]: #dodwUf98XESPziJA6K5Ojc9F5J327Js5Y86/4SNIpKg=:eyJpc01vbm9yZXBvIjp0cnVlLCJ0eXBlIjoiZ2l0aHViIiwicHJvamVjdHMiOlt7Im5hbWUiOiJzZmMtcGxheWdyb3VuZCIsInJvb3REaXJlY3RvcnkiOiJwYWNrYWdlcy9zZmMtcGxheWdyb3VuZCIsImluc3BlY3RvclVybCI6Imh0dHBzOi8vdmVyY2VsLmNvbS92dWVqcy9zZmMtcGxheWdyb3VuZC81NTF5NUJIU1BWVzJTNFFwdjhFcW5FbXpSRTRUIiwi...
2023-04-06T12:43:51
2023-04-06T12:44:25
{}
NONE
vuejs
core
1,499,009,088
7,541
vercel[bot]
[vc]: #EPClNTep1UTc7OG5XjkYUHice6EouIasgFLcNQTR9qM=:eyJpc01vbm9yZXBvIjp0cnVlLCJ0eXBlIjoiZ2l0aHViIiwicHJvamVjdHMiOlt7Im5hbWUiOiJzZmMtcGxheWdyb3VuZCIsInJvb3REaXJlY3RvcnkiOiJwYWNrYWdlcy9zZmMtcGxheWdyb3VuZCIsImluc3BlY3RvclVybCI6Imh0dHBzOi8vdmVyY2VsLmNvbS92dWVqcy9zZmMtcGxheWdyb3VuZC81Z0ZlSjk5cnVqWm9vdTdrQ1JwU3FaS0VINWVHIiwi...
2023-04-06T12:43:51
2023-04-06T12:44:52
{}
NONE
vuejs
core
1,500,171,119
8,008
Rednas83
I tested it. Your workaround works but you should remove the '()' to return the function instead of the result. ``` const mathMethods = { sum: useSum multiply: useMultiply } ``` The feature request is very simple. Provide an object/function to dynamically call a function. Something like: `call("sum", [...
2023-04-07T10:47:54
2023-04-07T10:48:57
{}
NONE
vuejs
core
1,501,383,232
8,046
vercel[bot]
@Alfred-Skyblue 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%22e75bdb5e1d29caa6adf225eeca12a369d3eba013%22%7D%2C%22id%22%3A%22QmW...
2023-04-10T04:40:26
2023-04-10T04:40:26
{}
NONE
vuejs
core
1,501,442,179
8,048
yyx990803
Looks like this is lacking runtime behavior tests in https://github.com/vuejs/core/blob/main/packages/runtime-dom/__tests__/directives/vModel.spec.ts
2023-04-10T06:12:48
2023-04-10T06:12:48
{}
MEMBER
vuejs
core
1,497,640,466
7,840
VENI-VIDIVICI
> @asuishi 但并不总是一个功能。然而,这里令人困惑的是,既然`Boolean(useSlots(). defult`是真的(创建了注释节点),为什么没有挂载dom。我认为这里存在性能不一致 [对比示例](https://sfc.vuejs.org/#eNp9UslOwzAQ/RXLlxapsSVAQqpCVZYrJ66+hGRKA/EiL0Eoyr8zjlNkAvSUmbfkxX4Z6J0xrA9At7R0tW2NJw58MDuhWmm09eTp80HjpEB5crBakhXjGRbNK6FKntzow8WDNF3lIW6+zNQIEFLmfkRK/q2nG5piC1kZ9ua0wg8boknMhBN0SyYkYhged0...
2023-04-05T15:01:24
2023-04-05T15:01:24
{}
NONE
vuejs
core
1,499,009,098
7,901
vercel[bot]
[vc]: #Ja0dhgEJxZQKpoNh1f0fLJQm4FiHHCheNR3TJfvahyk=:eyJpc01vbm9yZXBvIjp0cnVlLCJ0eXBlIjoiZ2l0aHViIiwicHJvamVjdHMiOlt7Im5hbWUiOiJzZmMtcGxheWdyb3VuZCIsInJvb3REaXJlY3RvcnkiOiJwYWNrYWdlcy9zZmMtcGxheWdyb3VuZCIsImluc3BlY3RvclVybCI6Imh0dHBzOi8vdmVyY2VsLmNvbS92dWVqcy9zZmMtcGxheWdyb3VuZC8zTFByM0NrTlNxZUNWcENZY05uR2VlN2diamFzIiwi...
2023-04-06T12:43:52
2023-04-06T12:44:11
{}
NONE
vuejs
core
1,499,009,084
7,341
vercel[bot]
[vc]: #0apySiQRpksOhtFXNi8+LI962Cdk5vbm2yO+F2+JIQ0=:eyJpc01vbm9yZXBvIjp0cnVlLCJ0eXBlIjoiZ2l0aHViIiwicHJvamVjdHMiOlt7Im5hbWUiOiJzZmMtcGxheWdyb3VuZCIsInJvb3REaXJlY3RvcnkiOiJwYWNrYWdlcy9zZmMtcGxheWdyb3VuZCIsImluc3BlY3RvclVybCI6Imh0dHBzOi8vdmVyY2VsLmNvbS92dWVqcy9zZmMtcGxheWdyb3VuZC8yZjYxcHM3dVJ4U0JOQjRGTlByczJRSFRYYkVVIiwi...
2023-04-06T12:43:51
2023-04-06T12:44:46
{}
NONE
vuejs
core
1,498,919,301
8,018
vercel[bot]
[vc]: #HSF8vm402P+PrVZb011sb7EabD0sWjp403ELpmGwYPY=:eyJpc01vbm9yZXBvIjp0cnVlLCJ0eXBlIjoiZ2l0aHViIiwicHJvamVjdHMiOlt7Im5hbWUiOiJzZmMtcGxheWdyb3VuZCIsInJvb3REaXJlY3RvcnkiOiJwYWNrYWdlcy9zZmMtcGxheWdyb3VuZCIsImluc3BlY3RvclVybCI6Imh0dHBzOi8vdmVyY2VsLmNvbS92dWVqcy9zZmMtcGxheWdyb3VuZC8yd2NvVmtiSkI1NU1LdXdpSFozQmZpNjRwM1dYIiwi...
2023-04-06T11:31:51
2023-04-08T04:00:28
{}
NONE
vuejs
core
1,500,995,034
5,657
soylomass
Will this ever be fixed? I love Vue, but this is a very annoying problem I run into with every Vue project. I started a new Nuxt 3 project, and it happened multiple times. The main problem about it is it's almost impossible to debug, the errors don't give any useful information. ``` <VaOptionList ...
2023-04-08T23:13:48
2023-04-08T23:13:48
{ "+1": 3 }
NONE