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,064,311,107
5,565
netlify[bot]
### <span aria-hidden="true">✅</span> Deploy Preview for *vue-next-template-explorer* ready! | Name | Link | |---------------------------------|------------------------| |<span aria-hidden="true">🔨</span> Latest commit | 48b1b1ecbecdd82546af0075741bf68e8add406b | |<span aria-hidden="true">🔍</span> Latest deploy lo...
2022-03-10T17:23:46
2022-04-13T09:30:42
{}
NONE
vuejs
core
1,098,032,371
5,711
netlify[bot]
### <span aria-hidden="true">✅</span> Deploy Preview for *vuejs-coverage* ready! | Name | Link | |---------------------------------|------------------------| |<span aria-hidden="true">🔨</span> Latest commit | 88baad6d431bff69deafdbe7c8e87ac07df54ae8 | |<span aria-hidden="true">🔍</span> Latest deploy log | https://...
2022-04-13T13:11:01
2022-04-13T13:25:54
{}
NONE
vuejs
core
1,096,858,873
1,072
kissu
I've run recently into this issue while using this [API platform](https://api-platform.com/docs/client-generator/nuxtjs/) generator. For some reason, it was bringing in both `vue-i18n` and `nuxt-i18n` at the same time. Not sure why because it's a Nuxt app, removing the Vue one _fixed_ those warnings. Not sure ...
2022-04-12T15:13:20
2022-04-12T15:13:28
{}
NONE
vuejs
core
1,062,815,630
5,552
netlify[bot]
### <span aria-hidden="true">✅</span> Deploy Preview for *vue-next-template-explorer* ready! | Name | Link | |---------------------------------|------------------------| |<span aria-hidden="true">🔨</span> Latest commit | 4f055a1c8c9ece8ae7bf35a4bebdb4487b65346c | |<span aria-hidden="true">🔍</span> Latest deploy lo...
2022-03-09T11:17:05
2022-04-13T09:20:47
{}
NONE
vuejs
core
1,091,869,478
5,682
netlify[bot]
### <span aria-hidden="true">✅</span> Deploy Preview for *vue-sfc-playground* ready! | Name | Link | |---------------------------------|------------------------| |<span aria-hidden="true">🔨</span> Latest commit | c8cc62cba298558b222cdc44a2f43b0ab171ab75 | |<span aria-hidden="true">🔍</span> Latest deploy log | http...
2022-04-07T15:18:41
2022-04-13T09:37:46
{}
NONE
vuejs
core
1,097,953,171
5,695
unshame
I relaxed the type back to what it was but only applied it for computed options. All tests should be passing now.
2022-04-13T11:44:01
2022-04-13T11:44:01
{}
NONE
vuejs
core
1,098,203,492
5,712
kikyouink
> BTW: You probably want to export `$$(num)` (the actual ref) i know ,but this code i got the same error too , why ? ``` function useMouse() { let x = $ref(0) let y = $ref(0) return $$({ x, y }) } export default useMouse; ```
2022-04-13T15:39:22
2022-04-13T15:43:05
{}
NONE
vuejs
core
1,098,406,837
5,715
netlify[bot]
### <span aria-hidden="true">✅</span> Deploy Preview for *vue-sfc-playground* ready! | Name | Link | |---------------------------------|------------------------| |<span aria-hidden="true">🔨</span> Latest commit | 5da093a72773d83056df3089dfe19472c1f6360a | |<span aria-hidden="true">🔍</span> Latest deploy log | http...
2022-04-13T19:30:43
2022-04-13T19:32:50
{}
NONE
vuejs
core
1,094,755,182
5,697
viclilei1921
import type { InjectionKey } from 'vue'; finished
2022-04-11T09:00:16
2022-04-11T09:00:16
{ "+1": 3 }
NONE
vuejs
core
1,095,801,844
5,698
kikyous
https://vuejs.org/guide/components/props.html#mutating-object-array-props modify object or array props is allowed
2022-04-12T01:47:14
2022-04-12T01:47:14
{}
NONE
vuejs
core
1,096,724,601
5,703
LinusBorg
Thanks. Now I can reproduce it. So it seems as it stands,`ComponentPropsOptions<>` can't be used in that way. removing these annotations and adding a `as const` on the whole props objects makes it work,... ```ts export const TypoProps = { align: { type: String as PropType<TypoAlignType>, required: t...
2022-04-12T13:24:22
2022-04-12T13:28:12
{}
MEMBER
vuejs
core
1,098,229,825
5,712
kikyouink
tsconfig.json close `composite` to `false` can fix it
2022-04-13T16:04:50
2022-04-13T16:04:50
{}
NONE
vuejs
core
1,098,407,990
5,715
LinusBorg
Sorry about that. We need to catch this in CI somehow, too easy to miss. I'm pretty sure there's a lint rule or jest flag for this ...
2022-04-13T19:32:08
2022-04-13T19:32:08
{}
MEMBER
vuejs
core
1,093,133,432
5,673
Bodokh
Then perhaps the documentation should be altered to warn of the implications because it is not made clear that i am only to use 2 scripts if i need the component name.
2022-04-08T17:50:00
2022-04-08T17:50:00
{}
NONE
vuejs
core
1,095,708,866
1,228
Wenish
> Also encountering that rn while running `npm run build`. > > only way to temporally fix it is to disabled `isolatedModules` from tsconfig.json well setting isolatedModules to false works for me. but is this really wanted?
2022-04-11T23:56:45
2022-04-11T23:56:45
{}
NONE
vuejs
core
1,096,835,005
5,703
Exotelis
> I wouldn't do that for `useTypoCss` composable, I wouldn't recommend relying on props type... that case it should be explicit type: > > ```ts > function useTypoCss(props: { align: TypoAlignType}) { > // .... > } > ``` I totally agree, `useTypoCss` was just the only example I had in my code and I used it or ...
2022-04-12T14:53:09
2022-04-12T14:53:09
{}
NONE
vuejs
core
1,025,660,551
5,348
netlify[bot]
### <span aria-hidden="true">✅</span> Deploy Preview for *vue-next-template-explorer* ready! | Name | Link | |---------------------------------|------------------------| |<span aria-hidden="true">🔨</span> Latest commit | 59a6eb5661736135d7a3eb14861697dcac6fbb51 | |<span aria-hidden="true">🔍</span> Latest deploy lo...
2022-01-31T11:54:34
2022-04-13T10:17:34
{}
NONE
vuejs
core
1,098,406,880
5,715
netlify[bot]
### <span aria-hidden="true">✅</span> Deploy Preview for *vue-next-template-explorer* ready! | Name | Link | |---------------------------------|------------------------| |<span aria-hidden="true">🔨</span> Latest commit | 5da093a72773d83056df3089dfe19472c1f6360a | |<span aria-hidden="true">🔍</span> Latest deploy lo...
2022-04-13T19:30:46
2022-04-13T19:31:36
{}
NONE
vuejs
core
1,094,679,311
5,584
Shhu
I run into this issue when deploying in production yesterday here is some example : [Default version](https://sfc.vuejs.org/#eyJBcHAudnVlIjoiPHRlbXBsYXRlPlxuICA8QmFzZUNoZWNrYm94IHYtbW9kZWw9XCJ0ZXN0XCIgdmFsdWU9XCJ2YWx1ZTFcIiAvPlxuICA8QmFzZUNoZWNrYm94IHYtbW9kZWw9XCJ0ZXN0XCIgdmFsdWU9XCJ2YWx1ZTJcIiAvPlxuICA8ZGl2PlxuICAgI...
2022-04-11T08:05:06
2022-04-11T08:19:59
{ "+1": 7 }
NONE
vuejs
core
1,096,270,849
5,700
LinusBorg
I *think* we had an issue about that before and the consensus was that v-if on slot templates isn't allowed, and the "workaround" shown here is the intended way to use conditional slots, Provided my memory is correct, we likely should document this better, and have the compiler throw an error in this case.
2022-04-12T07:40:34
2022-04-12T07:41:24
{}
MEMBER
vuejs
core
1,062,815,626
5,552
netlify[bot]
### <span aria-hidden="true">✅</span> Deploy Preview for *vuejs-coverage* ready! | Name | Link | |---------------------------------|------------------------| |<span aria-hidden="true">🔨</span> Latest commit | 4f055a1c8c9ece8ae7bf35a4bebdb4487b65346c | |<span aria-hidden="true">🔍</span> Latest deploy log | https://...
2022-03-09T11:17:05
2022-04-13T09:25:19
{}
NONE
vuejs
core
1,097,826,659
5,695
yyx990803
Unfortunately the relaxed arguments type seems necessary for the type tests to pass.
2022-04-13T09:45:33
2022-04-13T09:45:33
{}
MEMBER
vuejs
core
1,094,246,595
5,693
edison1105
你的提供的demo太复杂了,我没有下载下来进行debug。 可能跟 https://github.com/vuejs/core/issues/4984 是相同的问题。 试试 `:include="[...cachedViewsDeep]"`,如果不能解决,最好是提供一个简单一点的可以复现的demo,方便检查问题。
2022-04-10T11:04:02
2022-04-10T11:04:02
{}
MEMBER
vuejs
core
1,094,708,827
5,584
LinusBorg
I didn't actually close this, the author did and j missed that.
2022-04-11T08:33:44
2022-04-11T13:27:54
{ "+1": 2 }
MEMBER
vuejs
core
1,059,017,238
5,517
netlify[bot]
### <span aria-hidden="true">✅</span> Deploy Preview for *vuejs-coverage* ready! | Name | Link | |---------------------------------|------------------------| |<span aria-hidden="true">🔨</span> Latest commit | 2b896fe21db19d8466272d2dcb0eacfd116bd3ce | |<span aria-hidden="true">🔍</span> Latest deploy log | https://...
2022-03-04T10:02:52
2022-04-12T06:43:19
{}
NONE
vuejs
core
1,062,815,634
5,552
netlify[bot]
### <span aria-hidden="true">✅</span> Deploy Preview for *vue-sfc-playground* ready! | Name | Link | |---------------------------------|------------------------| |<span aria-hidden="true">🔨</span> Latest commit | 4f055a1c8c9ece8ae7bf35a4bebdb4487b65346c | |<span aria-hidden="true">🔍</span> Latest deploy log | http...
2022-03-09T11:17:05
2022-04-13T09:23:13
{}
NONE
vuejs
core
1,025,660,558
5,348
netlify[bot]
### <span aria-hidden="true">✅</span> Deploy Preview for *vue-sfc-playground* ready! | Name | Link | |---------------------------------|------------------------| |<span aria-hidden="true">🔨</span> Latest commit | 59a6eb5661736135d7a3eb14861697dcac6fbb51 | |<span aria-hidden="true">🔍</span> Latest deploy log | http...
2022-01-31T11:54:34
2022-04-13T10:19:31
{}
NONE
vuejs
core
1,097,881,360
5,708
netlify[bot]
### <span aria-hidden="true">✅</span> Deploy Preview for *vue-sfc-playground* ready! | Name | Link | |---------------------------------|------------------------| |<span aria-hidden="true">🔨</span> Latest commit | 72db7921562829ae3463f2bdc1853efd6f4aa9ae | |<span aria-hidden="true">🔍</span> Latest deploy log | http...
2022-04-13T10:27:05
2022-04-13T10:29:17
{}
NONE
vuejs
core
1,098,032,377
5,711
netlify[bot]
### <span aria-hidden="true">✅</span> Deploy Preview for *vue-next-template-explorer* ready! | Name | Link | |---------------------------------|------------------------| |<span aria-hidden="true">🔨</span> Latest commit | 88baad6d431bff69deafdbe7c8e87ac07df54ae8 | |<span aria-hidden="true">🔍</span> Latest deploy lo...
2022-04-13T13:11:01
2022-04-13T13:21:48
{}
NONE
vuejs
core
1,098,289,916
5,713
netlify[bot]
### <span aria-hidden="true">✅</span> Deploy Preview for *vue-next-template-explorer* ready! | Name | Link | |---------------------------------|------------------------| |<span aria-hidden="true">🔨</span> Latest commit | 57f6b7bd85269e542feab7f75bf341cb4ebfd96f | |<span aria-hidden="true">🔍</span> Latest deploy lo...
2022-04-13T17:09:53
2022-04-13T17:10:35
{}
NONE
vuejs
core
1,098,372,401
5,700
jaa134
A compiler error seems like a good decision to keep developers from making the same mistake!
2022-04-13T18:46:53
2022-04-13T18:46:53
{}
NONE
vuejs
core
1,093,581,861
4,294
aislanmaia
> ```ts > export type TypeFromProps<T> = Writeable<PartialBy<ExtractPropTypes<T>, keyof ExtractDefaultPropTypes<T>>>; > ``` How to use it inside component when defining props ?
2022-04-09T01:59:44
2022-04-09T02:00:11
{}
NONE
vuejs
core
1,094,280,480
5,693
posva
Hi, thanks for your interest but Github issues are for bug reports and feature requests only. You can ask questions on the [forum](http://forum.vuejs.org/), the [Discord server](https://vue-land.js.org/) or [StackOverflow](http://stackoverflow.com/tags/vue.js).
2022-04-10T13:57:41
2022-04-10T13:57:41
{}
MEMBER
vuejs
core
1,094,701,607
5,696
LinusBorg
defineProps/Emits/Expose are compiler Hints and only available in `<script setup>`, so this is expected. https://vuejs.org/api/sfc-script-setup.html#defineprops-defineemits You also don't need them when using TSX with defineComponent(), just use the normal options that are available for this: * https://vuejs.o...
2022-04-11T08:26:24
2022-04-11T08:27:23
{ "heart": 1 }
MEMBER
vuejs
core
1,095,397,239
5,700
jaa134
This issue was originally created as a Volar issue at which point we determined it is a legitimate Vue bug.
2022-04-11T18:21:39
2022-04-11T18:21:39
{}
NONE
vuejs
core
1,064,311,114
5,565
netlify[bot]
### <span aria-hidden="true">✅</span> Deploy Preview for *vuejs-coverage* ready! | Name | Link | |---------------------------------|------------------------| |<span aria-hidden="true">🔨</span> Latest commit | 48b1b1ecbecdd82546af0075741bf68e8add406b | |<span aria-hidden="true">🔍</span> Latest deploy log | https://...
2022-03-10T17:23:46
2022-04-13T09:35:55
{}
NONE
vuejs
core
1,098,052,002
5,707
SvenSchoene
I appreciate the quick fix. It looks good, can't wait to test it out! Is there any insight on why there would be a difference between a Dev-Server and a Production-build on this matter? Again, we wouldn't have been able to catch this issue during development-time, and that is a bit concerning.
2022-04-13T13:29:00
2022-04-13T13:29:00
{}
NONE
vuejs
core
1,098,420,600
5,714
LinusBorg
That expected. The content of the #app element is used as a template for the Vue app you mount, and in the process, the content of #app will be replaced.
2022-04-13T19:47:02
2022-04-13T19:52:55
{}
MEMBER
vuejs
core
1,015,345,454
5,207
yuwu9145
This is because when for example "home" is active, `keepAlive` caches `About` -> `RouterView` (`RounterView` renders `NestedHome`), it results in two `NestedHome` instances. ![image](https://user-images.githubusercontent.com/5698884/149933106-250aea84-2937-41d7-94df-5ffef00e15d2.png)
2022-01-18T12:03:25
2022-01-18T12:24:59
{}
CONTRIBUTOR
vuejs
core
1,018,111,835
5,300
yellinzero
```javascript this.effect.active = !isSSR ``` maybe this code make computed inactive in SSR env?
2022-01-21T02:37:25
2022-01-21T02:37:25
{}
NONE
vuejs
core
1,018,228,622
5,251
netlify[bot]
✔️ Deploy Preview for *vue-sfc-playground* ready! 🔨 Explore the source changes: 2f3510abef96079270a4870f5ab4948ecddb91ae 🔍 Inspect the deploy log: [https://app.netlify.com/sites/vue-sfc-playground/deploys/61ea58cbf64fc30007e795d8](https://app.netlify.com/sites/vue-sfc-playground/deploys/61ea58cbf64fc30007e795d8) ...
2022-01-21T06:48:34
2022-01-21T06:57:30
{}
NONE
vuejs
core
1,018,255,241
5,172
yyx990803
I don't think this is necessary after pruning the directory of directories that should no longer be there.
2022-01-21T07:35:53
2022-01-21T07:35:53
{}
MEMBER
vuejs
core
1,018,495,341
5,303
joshkrz
Thanks for the insight! I wasn't aware Lodash had the capability to work with Vue's reactivity. I agree then that given a reputable library can solve the problem then it dosen't need to be part of the core.
2022-01-21T13:15:25
2022-01-21T13:17:03
{}
NONE
vuejs
core
1,017,355,318
4,309
woldtwerk
You could do a workaround. It's situational and doesn't cover everything, but it might suit your usecase. In your components you simple call useStyles(). This uses the fact that the styles are exposed on the style property. You need to name your components *.ce.vue or change the compiler options. ```ts import { r...
2022-01-20T10:47:52
2022-01-20T10:47:52
{ "eyes": 1, "heart": 1 }
NONE
vuejs
core
1,017,373,241
3,956
bnuephjx
请问解决了么?有参考资料么?
2022-01-20T11:01:46
2022-01-20T11:01:46
{}
NONE
vuejs
core
1,017,531,256
4,605
livthomas
I have also run into this issue. It took me a while to realize it's actually caused by teleport. Because sometimes you use a slot of either your or a third-party component and you don't know what exactly will happen to the content you're passing in. There can be teleport used inside and then you are wondering why `v-bi...
2022-01-20T14:00:28
2022-01-20T14:00:28
{ "+1": 4 }
NONE
vuejs
core
1,017,947,883
5,299
netlify[bot]
✔️ Deploy Preview for *vue-next-template-explorer* ready! 🔨 Explore the source changes: 93557afc1920b7ff7ece8d659a761e9b4516ca7a 🔍 Inspect the deploy log: [https://app.netlify.com/sites/vue-next-template-explorer/deploys/61ea4e8ee9e9050008a63600](https://app.netlify.com/sites/vue-next-template-explorer/deploys/61e...
2022-01-20T21:34:29
2022-01-21T06:12:18
{}
NONE
vuejs
core
1,018,221,514
5,237
yyx990803
This is the intended behavior of Vue 3. `isHTMLTag` and `isSVGTag` are compile-time only and should not be used in runtime code paths. This patch makes the dynamic resolving logic web-specific when it should be platform agnostic.
2022-01-21T06:32:09
2022-01-21T06:32:24
{}
MEMBER
vuejs
core
1,018,531,663
5,131
netlify[bot]
✔️ Deploy Preview for *vue-next-template-explorer* ready! 🔨 Explore the source changes: f9c83b63ae37c0477b277334ac0f0c665ae41b47 🔍 Inspect the deploy log: [https://app.netlify.com/sites/vue-next-template-explorer/deploys/61eabd3ec1bb40000974afb1](https://app.netlify.com/sites/vue-next-template-explorer/deploys/61e...
2022-01-21T14:03:33
2022-01-21T14:07:14
{}
NONE
vuejs
core
1,019,073,767
5,306
netlify[bot]
✔️ Deploy Preview for *vuejs-coverage* ready! 🔨 Explore the source changes: 998cf37e1b0e7d83c9302bfdd26e231ced5da293 🔍 Inspect the deploy log: [https://app.netlify.com/sites/vuejs-coverage/deploys/61ed1968c15dcf00074fbcef](https://app.netlify.com/sites/vuejs-coverage/deploys/61ed1968c15dcf00074fbcef) 😎 Browse th...
2022-01-22T06:21:20
2022-01-23T09:06:50
{}
NONE
vuejs
core
1,019,454,664
3,253
guohuihot
在我看来extends和mixins就不应该在hooks里出现,与设计违背
2022-01-23T10:24:05
2022-01-23T10:24:05
{}
NONE
vuejs
core
1,014,278,888
4,339
wcldyx
Looking forward to this feature.
2022-01-17T08:54:58
2022-01-17T08:54:58
{}
NONE
vuejs
core
1,014,586,203
5,273
posva
You can `key` the component so it _"replays"_ fetching and animations. Please, next time consider using the [forum](http://forum.vuejs.org/), the [Discord server](https://vue-land.js.org/) or [StackOverflow](http://stackoverflow.com/tags/vue.js) for questions first. But feel free to come back and open an issue if ...
2022-01-17T14:11:45
2022-01-17T14:11:45
{}
MEMBER
vuejs
core
1,014,595,988
5,274
cyanxxx
> I think this has nothing to do with vue. > > ```js > // if new content is not empty it works fine. > this.content = Number(this.create) ? "<p>Hello World!</p>" : "new val"; > ``` But in vue2 it works good. https://codepen.io/cyanxxx/pen/LYzarZP > I think this has nothing to do with vue. > > ```js > // ...
2022-01-17T14:20:30
2022-01-17T14:20:30
{}
NONE
vuejs
core
1,016,898,070
5,290
lidlanca
@LinusBorg perhaps `mounted` should not be called, since the component is not technically mounted when it is called. +1 for the docs update
2022-01-19T21:49:16
2022-01-19T21:49:16
{ "+1": 2 }
CONTRIBUTOR
vuejs
core
1,017,933,613
5,297
LinusBorg
The warnHandler is meant to handle warnings from things happening in components, i.e. during render. it's not meant to catch this kind of warning, really. That's why it receives a vm as the second argument.
2022-01-20T21:14:28
2022-01-20T21:14:28
{}
MEMBER
vuejs
core
1,017,970,061
5,298
lidlanca
will also fail with a preceding label ```js some_label: var test=$ref(1) ```
2022-01-20T22:08:50
2022-01-20T22:08:50
{}
CONTRIBUTOR
vuejs
core
1,015,353,678
5,207
edison1105
similar to #5252, because the children are not cached.
2022-01-18T12:14:22
2022-01-18T12:14:22
{ "+1": 1 }
MEMBER
vuejs
core
1,016,085,647
5,285
lidlanca
This is expected You can resolve this by not using conflicting names for an imported component and local function . ```js <hello ref="helloRef" /> ``` to ```html <Hello ref="helloRef" /> ``` is a possible fix for your use case.
2022-01-19T05:06:02
2022-01-19T05:06:02
{}
CONTRIBUTOR
vuejs
core
1,016,689,249
5,290
LinusBorg
I've been thinking about this a bit and now I think this isn't a bug, necessarily. * `beforeMount` and `beforeUnmount` are called synchronously before the render effect. * `mounted` and `unmounted` are called on the next Tick after the current scheduler cycle has finished. So if you have code that 1) mounts a co...
2022-01-19T17:18:49
2022-01-19T17:18:49
{}
MEMBER
vuejs
core
1,017,212,838
5,295
Justineo
请按要求提交 issue。
2022-01-20T08:05:58
2022-01-20T08:05:58
{}
MEMBER
vuejs
core
1,018,531,665
5,131
netlify[bot]
✔️ Deploy Preview for *vue-sfc-playground* ready! 🔨 Explore the source changes: f9c83b63ae37c0477b277334ac0f0c665ae41b47 🔍 Inspect the deploy log: [https://app.netlify.com/sites/vue-sfc-playground/deploys/61eabd3ed2e3e9000782cf6b](https://app.netlify.com/sites/vue-sfc-playground/deploys/61eabd3ed2e3e9000782cf6b) ...
2022-01-21T14:03:33
2022-01-21T14:11:44
{}
NONE
vuejs
core
1,018,531,659
5,131
netlify[bot]
✔️ Deploy Preview for *vuejs-coverage* ready! 🔨 Explore the source changes: f9c83b63ae37c0477b277334ac0f0c665ae41b47 🔍 Inspect the deploy log: [https://app.netlify.com/sites/vuejs-coverage/deploys/61eabd3e26a94000079efe2b](https://app.netlify.com/sites/vuejs-coverage/deploys/61eabd3e26a94000079efe2b) 😎 Browse th...
2022-01-21T14:03:33
2022-01-21T14:16:34
{}
NONE
vuejs
core
1,018,218,739
5,243
noootwo
> `unref()` simply unwraps the refs, not reactivity. The current behavior is intended behavior and this change will be a breaking change. thanks, I got it.
2022-01-21T06:25:54
2022-01-21T06:25:54
{}
CONTRIBUTOR
vuejs
core
1,016,546,439
5,291
netlify[bot]
✔️ Deploy Preview for *vue-sfc-playground* ready! 🔨 Explore the source changes: 06aba4a53c338be4a83678e5692024a1d8e17091 🔍 Inspect the deploy log: [https://app.netlify.com/sites/vue-sfc-playground/deploys/61ea5674b28b350007177276](https://app.netlify.com/sites/vue-sfc-playground/deploys/61ea5674b28b350007177276) ...
2022-01-19T14:56:28
2022-01-21T06:47:41
{}
NONE
vuejs
core
1,018,477,757
5,303
LinusBorg
What you want in the end is a clone of the object hierarchy you would get as if you recursively walked the whole reactive proxy. Which a bunch of packages have already solved, like [lodash's `cloneDeep`](https://lodash.com/docs/4.17.15#cloneDeep) [See SFC Payground](https://sfc.vuejs.org/#eyJBcHAudnVlIjoiPHNjcmlwdCB...
2022-01-21T12:50:51
2022-01-21T12:53:26
{ "+1": 4, "-1": 8 }
MEMBER
vuejs
core
1,018,571,984
5,303
LinusBorg
Just to be clear, lodash doesn't know how to unwrap refs - but it doesn't have to. if we clone the reactive proxy, nested refs will be unwrapped by Vue in the process.
2022-01-21T14:45:51
2022-01-21T14:45:51
{}
MEMBER
vuejs
core
1,016,104,105
5,285
zybzzc
> This is expected You can resolve this by not using conflicting names for an imported component and local function . > > ```js > <hello ref="helloRef" /> > ``` > > to > > ``` > <Hello ref="helloRef" /> > ``` > > is a possible fix for your use case. It's works, thanks.
2022-01-19T05:41:36
2022-01-19T05:41:36
{}
NONE
vuejs
core
1,018,252,760
5,239
yyx990803
Are you calling `renderSlot` manually? It's a compiler-only helper so the runtime will assume its return content is always normalized vnodes: https://template-explorer.vuejs.org/#eyJzcmMiOiI8Q29tcD5cblx0PHNsb3QgbmFtZT1cInRpdGxlXCI+ZmVzZjwvc2xvdD5cbjwvQ29tcD4iLCJvcHRpb25zIjp7ImhvaXN0U3RhdGljIjp0cnVlLCJjYWNoZUhhbmRsZXJzI...
2022-01-21T07:30:56
2022-01-21T07:30:56
{}
MEMBER
vuejs
core
1,014,088,504
3,559
JayFate
@yyx990803 Do you have a minute to review the PR?
2022-01-17T02:48:24
2022-01-17T02:48:24
{}
CONTRIBUTOR
vuejs
core
1,014,556,753
5,274
edison1105
I think this has nothing to do with vue. ```javascript // if new content is not empty it works fine. this.content = Number(this.create) ? "<p>Hello World!</p>" : "new val"; ```
2022-01-17T13:37:09
2022-01-17T13:37:09
{}
MEMBER
vuejs
core
1,014,957,042
5,213
yyx990803
- `triggerRef` only works on refs, so it's expected that it doesn't work on `this.text`. - For case (2), a component won't update if it receives the same props passed to it. In this case you'll have to manually update the input in the child component: https://sfc.vuejs.org/#eyJBcHAudnVlIjoiPHNjcmlwdCBzZXR1cD5cbmltc...
2022-01-17T23:41:41
2022-01-17T23:41:41
{}
MEMBER
vuejs
core
1,015,502,769
5,282
netlify[bot]
✔️ Deploy Preview for *vue-sfc-playground* ready! 🔨 Explore the source changes: 9b265ee9ccf12afd5e47dcf5eeb501e5720bc700 🔍 Inspect the deploy log: [https://app.netlify.com/sites/vue-sfc-playground/deploys/61e6d7613ee33800070dbae4](https://app.netlify.com/sites/vue-sfc-playground/deploys/61e6d7613ee33800070dbae4) ...
2022-01-18T15:06:14
2022-01-18T15:08:44
{}
NONE
vuejs
core
1,016,134,504
5,284
eliran-positive
@lidlanca Thank for the replay and solution it work But i think that the cast not need to be by default is different behavior Also the documented in not clear "Vue can automatically convert..." mybe "Vue automatically try to convert..."
2022-01-19T06:47:16
2022-01-19T06:47:16
{}
NONE
vuejs
core
1,017,947,884
5,299
netlify[bot]
✔️ Deploy Preview for *vuejs-coverage* ready! 🔨 Explore the source changes: 93557afc1920b7ff7ece8d659a761e9b4516ca7a 🔍 Inspect the deploy log: [https://app.netlify.com/sites/vuejs-coverage/deploys/61ea4e8ee53e88000824dae2](https://app.netlify.com/sites/vuejs-coverage/deploys/61ea4e8ee53e88000824dae2) 😎 Browse th...
2022-01-20T21:34:29
2022-01-21T06:16:46
{}
NONE
vuejs
core
995,363,811
5,109
caozhong1996
Come on, Can't we have a good discussion? 🤷
2021-12-16T01:44:29
2022-01-21T07:47:20
{}
CONTRIBUTOR
vuejs
core
1,019,333,834
5,307
LinusBorg
Seems to be a side effect of my patch, indeed. Will try and get a fix for this done tomorrow.
2022-01-22T18:46:25
2022-01-22T18:46:25
{}
MEMBER
vuejs
core
1,014,996,952
5,238
likecreep
> `animation-iteration-count` only works if the element stays in the DOM. Vue removes the element on `animationend` event, which fires after each iteration. Supporting this property is out of scope for Vue. That's incorrect. `animationend` event only be fired after the last iteration has completed. If Vue removes the ...
2022-01-18T01:38:19
2022-01-18T01:38:19
{}
NONE
vuejs
core
1,015,502,772
5,282
netlify[bot]
✔️ Deploy Preview for *vuejs-coverage* ready! 🔨 Explore the source changes: 9b265ee9ccf12afd5e47dcf5eeb501e5720bc700 🔍 Inspect the deploy log: [https://app.netlify.com/sites/vuejs-coverage/deploys/61e6d761523b060007632c81](https://app.netlify.com/sites/vuejs-coverage/deploys/61e6d761523b060007632c81) 😎 Browse th...
2022-01-18T15:06:14
2022-01-18T15:12:05
{}
NONE
vuejs
core
1,015,832,889
5,274
posva
Your reproduction is not minimal, please read and follow https://new-issue.vuejs.org/?repo=vuejs/vue-next#why-repro when reporting a bug. Most bugs should be reproducible with the [SFC Playground](https://sfc.vuejs.org). Try reproducing without quill or router.
2022-01-18T21:05:34
2022-01-18T21:05:34
{}
MEMBER
vuejs
core
1,016,922,781
5,289
lidlanca
hoisting issue ```html <template> <b>{{msg}}</b> <svg v-x> <path d="M2,3H5.5L12"/> </svg> </template> ``` withDirectives called outside render function, and _directive_x is unscoped ```js const _hoisted_1 = _withDirectives(/*#__PURE__*/_createElementVNode("svg", null, [ /*#__PURE__*/_c...
2022-01-19T22:16:29
2022-01-19T22:16:29
{}
CONTRIBUTOR
vuejs
core
1,017,200,939
5,294
Justineo
`() => shown` returns a ref so it's truthy. You need to access the value via `shown.value`. Only those refs which are directly exposed to the template, or inside reactive object will be unwrapped automatically.
2022-01-20T07:46:47
2022-01-20T07:46:47
{}
MEMBER
vuejs
core
1,018,829,138
5,303
lidlanca
https://github.com/vuejs/core/issues/5227#issuecomment-1010420912
2022-01-21T20:17:36
2022-01-21T20:17:36
{}
CONTRIBUTOR
vuejs
core
1,019,324,697
5,307
lidlanca
introduced by: https://github.com/vuejs/core/commit/171f5e9c6008bf0dff565991f34b214da016dde0
2022-01-22T18:03:59
2022-01-22T18:03:59
{ "+1": 1 }
CONTRIBUTOR
vuejs
core
1,015,141,691
5,272
zouyaoji
@yyx990803 It is still recommended to consider it. If it can be done, the component does not need to maintain the type definition of the component itself, and it can be extracted directly with ExtractPropsTypes. 还是建议考虑一下呢,如果能做到的话,组件库就不用自己维护组件的类型定义了,直接用ExtractPropsTypes展开导出就行。 Should this be considered a new req...
2022-01-18T07:35:21
2022-01-18T08:49:09
{}
NONE
vuejs
core
1,016,582,327
5,287
LinusBorg
Please provide a minimal reproduction, not a whole app. You can ask the community for help in pinpointing the issue to provide a better reproduction.
2022-01-19T15:29:38
2022-01-19T15:29:38
{}
MEMBER
vuejs
core
1,017,161,532
5,293
netlify[bot]
✔️ Deploy Preview for *vuejs-coverage* ready! 🔨 Explore the source changes: 0c9cc894e8545923108f41c24b2f1c6d82f4e029 🔍 Inspect the deploy log: [https://app.netlify.com/sites/vuejs-coverage/deploys/61e901cde7e62700074d0645](https://app.netlify.com/sites/vuejs-coverage/deploys/61e901cde7e62700074d0645) 😎 Browse th...
2022-01-20T06:31:46
2022-01-20T06:37:19
{}
NONE
vuejs
core
1,017,947,878
5,299
netlify[bot]
✔️ Deploy Preview for *vue-sfc-playground* ready! 🔨 Explore the source changes: 93557afc1920b7ff7ece8d659a761e9b4516ca7a 🔍 Inspect the deploy log: [https://app.netlify.com/sites/vue-sfc-playground/deploys/61ea4e8e37971300096d3b1d](https://app.netlify.com/sites/vue-sfc-playground/deploys/61ea4e8e37971300096d3b1d) ...
2022-01-20T21:34:29
2022-01-21T06:13:45
{}
NONE
vuejs
core
1,019,073,768
5,306
netlify[bot]
✔️ Deploy Preview for *vue-next-template-explorer* ready! 🔨 Explore the source changes: 998cf37e1b0e7d83c9302bfdd26e231ced5da293 🔍 Inspect the deploy log: [https://app.netlify.com/sites/vue-next-template-explorer/deploys/61ed1968523ce60007332bb8](https://app.netlify.com/sites/vue-next-template-explorer/deploys/61e...
2022-01-22T06:21:20
2022-01-23T09:02:11
{}
NONE
vuejs
core
1,015,536,834
5,283
LinusBorg
Please follow the issue requirements.
2022-01-18T15:40:58
2022-01-18T15:40:58
{}
MEMBER
vuejs
core
1,016,546,436
5,291
netlify[bot]
✔️ Deploy Preview for *vue-next-template-explorer* ready! 🔨 Explore the source changes: 06aba4a53c338be4a83678e5692024a1d8e17091 🔍 Inspect the deploy log: [https://app.netlify.com/sites/vue-next-template-explorer/deploys/61ea56745caa0000071bb839](https://app.netlify.com/sites/vue-next-template-explorer/deploys/61e...
2022-01-19T14:56:28
2022-01-21T06:45:59
{}
NONE
vuejs
core
1,018,228,645
5,251
netlify[bot]
✔️ Deploy Preview for *vue-next-template-explorer* ready! 🔨 Explore the source changes: 2f3510abef96079270a4870f5ab4948ecddb91ae 🔍 Inspect the deploy log: [https://app.netlify.com/sites/vue-next-template-explorer/deploys/61ea58cb89a7d400076db6a1](https://app.netlify.com/sites/vue-next-template-explorer/deploys/61e...
2022-01-21T06:48:36
2022-01-21T06:56:01
{}
NONE
vuejs
core
1,018,517,637
5,184
martijn10kb
I have the same issue. Please reopen this
2022-01-21T13:44:51
2022-01-21T13:44:51
{}
NONE
vuejs
core
1,019,471,212
5,301
yyx990803
Please provide a reproduction. Which version did you upgrade from?
2022-01-23T12:07:49
2022-01-23T12:07:49
{}
MEMBER
vuejs
core
1,014,391,935
5,217
AK47-dadada
@qq10137383 兄弟 问题得到解决了 @edison1105 大佬,这个可以参照一下 http://www.jmblog.com.cn/article/61e5471af3e068311c322440
2022-01-17T10:59:41
2022-01-17T10:59:41
{}
NONE
vuejs
core
1,014,503,159
5,217
edison1105
> @qq10137383 兄弟 问题得到解决了 @edison1105 大佬,这个可以参照一下 http://www.jmblog.com.cn/article/61e5471af3e068311c322440 子路由的`<router-view/>`,也要单独加keepalive,这跟vue2的keepalive是一致的。
2022-01-17T13:00:27
2022-01-17T13:01:42
{}
MEMBER
vuejs
core
1,016,019,842
5,213
timongh
I've come up with an argument for this behavior of Vue. This might be an okay explanation: Vue always assumes that the bound data is the same as the real value of the form. The advantage of this is that when the bound data is assigned by its old value, Vue can ignore the assignment to optimize performance. Howeve...
2022-01-19T02:28:38
2022-01-19T02:28:38
{}
NONE
vuejs
core
1,017,158,591
5,292
edison1105
duplicate of https://github.com/vuejs/core/issues/4605
2022-01-20T06:25:37
2022-01-20T06:25:37
{}
MEMBER
vuejs
core
1,017,258,373
5,272
zouyaoji
Yes, I hope Vue can provide such a processing method.
2022-01-20T09:07:04
2022-01-20T09:07:04
{ "+1": 1 }
NONE
vuejs
core
1,017,361,246
5,290
yellinzero
maybe we could code like this,put the action to nexttick ```javascript beforeCreate() { this.obj = {} }, mounted() { this.obj.a = 1; }, beforeUnmount() { this.$nextTick(()=>{ delete this.obj; }) }
2022-01-20T10:51:26
2022-01-20T10:51:26
{}
NONE