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,034,053,177
5,392
netlify[bot]
✔️ Deploy Preview for *vue-next-template-explorer* ready! 🔨 Explore the source changes: d6f5e941f4a5d83d81569cd912499ebc0f7cfd66 🔍 Inspect the deploy log: [https://app.netlify.com/sites/vue-next-template-explorer/deploys/62040df209eb330007295d8b](https://app.netlify.com/sites/vue-next-template-explorer/deploys/620...
2022-02-09T18:11:37
2022-02-09T18:56:20
{}
NONE
vuejs
core
1,034,709,930
5,323
nicolas-t
Hello @posva, I can't reproduce the bug without vue-router (`activated` event is not called on `deactivated` component anymore) I let you check if my repro is valid, but I think this issue can be moved to the vue-router repository. [SFC playground](https://sfc.vuejs.org/#eyJBcHAudnVlIjoiPHNjcmlwdCBzZXR1cD5cbmltcG...
2022-02-10T09:49:30
2022-02-10T09:49:48
{}
NONE
vuejs
core
1,035,002,363
5,397
leopiccionia
A good start is converting `temporaryInitArray` and `temporarySolvedArray` to refs, like you did with `difficulty`. Something like this: ```ts const temporaryInitArray = ref<string[]>([]) const temporarySolvedArray = ref<string[]>([]) [temporaryInitArray.value, temporarySolvedArray.value] = getUniqueSudoku(dif...
2022-02-10T14:42:56
2022-02-10T14:42:56
{}
CONTRIBUTOR
vuejs
core
1,032,202,069
5,363
caozhong1996
It's not memory leak. This is due to vue-devtools recorded some information which contains thoese elements and this only happen on development environment(I can't reproduced what you said), but I think vue-devtools should be improved.
2022-02-08T04:26:18
2022-02-08T10:05:22
{ "confused": 1 }
CONTRIBUTOR
vuejs
core
1,032,489,630
5,363
LinusBorg
@caozhong1996 Interesting. I don't see an apparent reason though why these should not be garbage collectable - the elements are detached, the reference to the component instance in the invoker's closure should also not be a reason as those instances have been unmounted and detached as well. Do you have an idea/susp...
2022-02-08T11:10:37
2022-02-08T11:10:37
{}
MEMBER
vuejs
core
1,033,437,931
5,385
LinusBorg
I would not necessarily see this as a bug, it's a side effect of nesting the same transition into itself, combined with the fact that elements here seem to be recreated from the slot switch - that needs handling from the developer. But we'll take a closer look
2022-02-09T07:40:39
2022-02-09T07:42:14
{}
MEMBER
vuejs
core
1,033,936,062
5,390
Rolanddoda
@LinusBorg any reason why it is a breaking change and a link where is documented as such?
2022-02-09T16:15:54
2022-02-09T16:15:54
{}
NONE
vuejs
core
1,034,533,909
5,394
netlify[bot]
✔️ Deploy Preview for *vue-sfc-playground* ready! 🔨 Explore the source changes: 547d25f1a48426fc20b93e7e2a316c40e14b7650 🔍 Inspect the deploy log: [https://app.netlify.com/sites/vue-sfc-playground/deploys/6204bd5d3f8ab80008074d15](https://app.netlify.com/sites/vue-sfc-playground/deploys/6204bd5d3f8ab80008074d15) ...
2022-02-10T06:10:43
2022-02-10T07:25:38
{}
NONE
vuejs
core
1,034,725,980
5,323
posva
The repro is not exactly the same because, in Vue Router, nested components are dynamic and keep rendering (cf the issue you linked) which is why they get activated/deactivated, the nested children are rendered twice. It's similar (but not exactly the same) [as this](https://sfc.vuejs.org/#eyJBcHAudnVlIjoiPHNjcmlwdCBzZ...
2022-02-10T10:04:56
2022-02-10T10:04:56
{ "+1": 1 }
MEMBER
vuejs
core
1,035,936,098
5,404
netlify[bot]
✔️ Deploy Preview for *vue-next-template-explorer* ready! 🔨 Explore the source changes: 41be51be55748ae80ce4ae83bebd01a3d3cfc2ad 🔍 Inspect the deploy log: [https://app.netlify.com/sites/vue-next-template-explorer/deploys/62060d24536a79000776e3c2](https://app.netlify.com/sites/vue-next-template-explorer/deploys/620...
2022-02-11T07:15:52
2022-02-11T07:16:52
{}
NONE
vuejs
core
1,035,939,730
5,401
lidlanca
```html <fires-events @Upper=inc1 @lower=inc2> ``` compiles to indistinguishable prop name `onUpper` `onLower` this is unlikely to change. to work around this limitation, either use a directive or a template ref to add an event listener directly to the dom element.
2022-02-11T07:23:35
2022-02-11T07:23:35
{ "+1": 2 }
CONTRIBUTOR
vuejs
core
1,032,309,150
5,371
edison1105
as workaround: ```javascript watch(...[arr], ()=> { console.log('watch [arr] : arr change, but not trigger watch') }) ```
2022-02-08T07:53:26
2022-02-08T07:53:26
{ "eyes": 1 }
MEMBER
vuejs
core
1,033,224,354
1,081
NorseGaud
@aztalbot , this doesn't seem to work when using an empty object: ``` const linkedNodes = reactive({}) . . . Object.assign(links,{}) ```
2022-02-09T01:08:13
2022-02-09T01:08:13
{ "+1": 5 }
NONE
vuejs
core
1,033,597,099
5,319
posva
Duplicate of https://github.com/vuejs/core/issues/5220
2022-02-09T10:19:08
2022-02-09T10:19:08
{}
MEMBER
vuejs
core
1,033,630,738
5,367
CipherdevNL
In a project I'm working on the same issue occurred during an upgrade of only the `yarn.lock` file. Did some research and apparently if the version of `@vue/reactivity` mismatches with the pinned version of `vue` in the `package.json` it will produce this issue. For the typescript type checking we're using `vue-tsc`...
2022-02-09T10:56:44
2022-02-09T10:56:44
{ "+1": 2 }
NONE
vuejs
core
1,033,924,685
5,363
JhonWeawer
@LinusBorg In view 2 the same behavior of detached nodes after destoy App. https://github.com/vuejs/vue/issues/12445, maybe this isue for vue 2 will be useful
2022-02-09T16:05:36
2022-02-09T16:05:36
{}
NONE
vuejs
core
1,034,053,170
5,392
netlify[bot]
✔️ Deploy Preview for *vuejs-coverage* ready! 🔨 Explore the source changes: d6f5e941f4a5d83d81569cd912499ebc0f7cfd66 🔍 Inspect the deploy log: [https://app.netlify.com/sites/vuejs-coverage/deploys/62040df28da2b500070684b3](https://app.netlify.com/sites/vuejs-coverage/deploys/62040df28da2b500070684b3) 😎 Browse th...
2022-02-09T18:11:37
2022-02-09T19:00:03
{}
NONE
vuejs
core
1,034,590,220
5,395
aohanhe
> No problem is found using the [official template](https://github.com/vitejs/vite/tree/main/packages/create-vite/template-vue-ts). 🤥 我也是用vite create创建的项目
2022-02-10T07:44:17
2022-02-10T07:44:17
{}
NONE
vuejs
core
1,034,880,982
5,397
leopiccionia
If I understand your code, `temporaryInitArray` and `temporarySolvedArray` are not reactive i.e. they are not wrapped in `reactive` or `ref`. If that's the case, it's the expected behavior.
2022-02-10T12:46:15
2022-02-10T12:46:15
{}
CONTRIBUTOR
vuejs
core
1,035,013,850
5,397
elonehoo
Thank you very much for your help and will correct these ridiculous mistakes.
2022-02-10T14:53:14
2022-02-10T14:53:14
{}
NONE
vuejs
core
1,035,936,101
5,404
netlify[bot]
✔️ Deploy Preview for *vuejs-coverage* ready! 🔨 Explore the source changes: 41be51be55748ae80ce4ae83bebd01a3d3cfc2ad 🔍 Inspect the deploy log: [https://app.netlify.com/sites/vuejs-coverage/deploys/62060d248f8e67000740c184](https://app.netlify.com/sites/vuejs-coverage/deploys/62060d248f8e67000740c184) 😎 Browse th...
2022-02-11T07:15:52
2022-02-11T07:23:24
{}
NONE
vuejs
core
1,032,309,558
5,372
LinusBorg
You can copy the same code into main.js and it behaves the same. So this is not related to Vue but to the build system you are using, likely.
2022-02-08T07:53:52
2022-02-08T07:53:52
{}
MEMBER
vuejs
core
1,032,841,099
5,377
netlify[bot]
✔️ Deploy Preview for *vue-sfc-playground* ready! 🔨 Explore the source changes: ba95eeee1d36dff476e958bb4d4d02c94bd624ec 🔍 Inspect the deploy log: [https://app.netlify.com/sites/vue-sfc-playground/deploys/6202a0859949100008022d8d](https://app.netlify.com/sites/vue-sfc-playground/deploys/6202a0859949100008022d8d) ...
2022-02-08T16:55:40
2022-02-08T16:58:05
{}
NONE
vuejs
core
1,033,915,111
5,350
JayFate
@yyx990803 Do you have a minute to review this PR ? thks.
2022-02-09T15:57:20
2022-02-09T15:57:20
{}
CONTRIBUTOR
vuejs
core
1,034,916,228
5,397
elonehoo
So what should I do? I really don't know anything about this.
2022-02-10T13:21:55
2022-02-10T13:21:55
{}
NONE
vuejs
core
1,032,428,028
5,363
caozhong1996
Sorry, I misunderstood you, it's similar to vue-devtools's behavior, but it's another problem😥. There is a related [issue](https://github.com/element-plus/element-plus/issues/4434) It seems that those invokers not be cleaned during unmount. https://github.com/vuejs/core/blob/c35ec47d73212b1b1fb1abca9004f992c45a...
2022-02-08T10:05:04
2022-02-08T10:05:04
{ "+1": 2 }
CONTRIBUTOR
vuejs
core
1,033,599,315
5,318
posva
Avoid the recursivity by marking the object as raw: ```js const parent = markRaw({ children: [a, b] }) ```
2022-02-09T10:21:31
2022-02-09T10:21:31
{ "+1": 1 }
MEMBER
vuejs
core
1,033,612,400
5,387
netlify[bot]
✔️ Deploy Preview for *vuejs-coverage* ready! 🔨 Explore the source changes: 119557a0294f872ed9b15d13388e7ac23565b791 🔍 Inspect the deploy log: [https://app.netlify.com/sites/vuejs-coverage/deploys/620398f4908a2c000802818b](https://app.netlify.com/sites/vuejs-coverage/deploys/620398f4908a2c000802818b) 😎 Browse th...
2022-02-09T10:35:38
2022-02-09T10:42:49
{}
NONE
vuejs
core
1,034,999,663
5,395
aohanhe
> > > No problem is found using the [official template](https://github.com/vitejs/vite/tree/main/packages/create-vite/template-vue-ts). 🤥 > > > > > > 我也是用vite create创建的项目 > > You can provide a replica using github or gitee. 😄 thanks我找到原因了,是因为在vite.config.ts中配置了 alias: { '@': resolve('./src'), ...
2022-02-10T14:40:29
2022-02-10T14:40:29
{}
NONE
vuejs
core
1,035,369,827
1,172
dima-hx
You can set multiple properties in `:set` directive in such way: <div :set="br = {variable1: someCalculation(), variable2: anotherCalculations()}"> <pre>{{br}}</pre> </div>
2022-02-10T19:15:46
2022-02-10T19:15:46
{}
NONE
vuejs
core
1,032,312,930
5,371
tangjinzhou
triggerRef for shallowRef
2022-02-08T07:57:48
2022-02-08T07:57:48
{}
CONTRIBUTOR
vuejs
core
1,032,311,334
5,371
LinusBorg
Edit: I'm rather confused why the first one does work at all. It's a shallow ref. Edit2: Nevermind I missed the whole point
2022-02-08T07:56:03
2022-02-08T07:58:01
{}
MEMBER
vuejs
core
1,032,864,281
5,377
LinusBorg
No idea why that one netlify preview failed. the test that fails in it works fine in CI and locally.
2022-02-08T17:18:36
2022-02-08T17:18:36
{}
MEMBER
vuejs
core
1,033,396,090
5,384
netlify[bot]
✔️ Deploy Preview for *vue-next-template-explorer* ready! 🔨 Explore the source changes: 9b31196340e9331f6ebb7b7a6e3a8557536c754d 🔍 Inspect the deploy log: [https://app.netlify.com/sites/vue-next-template-explorer/deploys/62035e7220d6880007ed9e93](https://app.netlify.com/sites/vue-next-template-explorer/deploys/620...
2022-02-09T06:25:59
2022-02-09T06:27:05
{}
NONE
vuejs
core
1,033,589,463
5,379
posva
Setting properties when they exist is intended behavior, you can force an attribute with `.attr`: ```html <component :is="tag" v-for="tag in tags" :text.attr="tag" :innerText="tag" /> ``` https://vuejs.org/api/built-in-directives.html#v-bind
2022-02-09T10:10:42
2022-02-09T10:10:42
{}
MEMBER
vuejs
core
1,033,927,527
5,363
JhonWeawer
> I'm just as confused by this as you, even in this situation which still appeared😥 > > ``` > <!-- no event binding --> > <div v-for="item in 1000" v-bind:key="item"> > <div>111<div/> > </div> > ``` @caozhong1996 Event binding is in the example, on the button element
2022-02-09T16:08:09
2022-02-09T16:08:09
{}
NONE
vuejs
core
1,034,090,054
5,392
espresso
Decided to just update this PR w/ the correct code instead of creating a new one. Sorry for the back and forth.
2022-02-09T18:55:40
2022-02-09T18:55:40
{}
NONE
vuejs
core
1,034,393,972
5,393
edison1105
you should use type declaration ```javascript const emit = defineEmits<Emits>() ```
2022-02-10T01:35:27
2022-02-10T01:35:27
{ "+1": 1 }
MEMBER
vuejs
core
1,121,801,791
4,806
yyx990803
Closing as stale
2022-05-10T02:20:47
2022-05-10T02:20:47
{}
MEMBER
vuejs
core
1,120,359,721
5,879
netlify[bot]
### <span aria-hidden="true">✅</span> Deploy Preview for *vuejs-coverage* ready! | Name | Link | |---------------------------------|------------------------| |<span aria-hidden="true">🔨</span> Latest commit | c608823f0551ea160ec2eb59523eb39dd54b9b60 | |<span aria-hidden="true">🔍</span> Latest deploy log | https://...
2022-05-08T06:32:00
2022-05-10T10:04:56
{}
NONE
vuejs
core
1,123,076,072
5,857
iwusong
I think you should run unit tests first
2022-05-11T01:18:50
2022-05-11T01:18:50
{}
CONTRIBUTOR
vuejs
core
1,123,281,258
5,184
4KDA
> I am having the same issue. Just dont know how to resolve it. Can we reopen this issue to take a look? +1
2022-05-11T07:24:09
2022-05-11T07:24:18
{}
NONE
vuejs
core
1,123,535,026
4,857
yyx990803
This has been fixed by https://github.com/vuejs/core/commit/6d887aaf591cfa05d5fea978bbd87e3e502bfa86 (since 3.2.24)
2022-05-11T10:25:53
2022-05-11T10:25:53
{}
MEMBER
vuejs
core
1,123,535,530
4,862
yyx990803
https://github.com/vuejs/core/issues/4857#issuecomment-1123535026
2022-05-11T10:26:02
2022-05-11T10:26:02
{ "rocket": 1 }
MEMBER
vuejs
core
1,123,607,004
4,852
yyx990803
Thanks for the PR, but hard code checking `_vod` isn't the best way to do this. The renderer is already checking if the transition is in persisted mode, but I realized there was no compile-time logic to put v-show transitions in persisted mode. Fixed in https://github.com/vuejs/core/commit/425310e8b614ad91660dd93d4e790...
2022-05-11T11:24:50
2022-05-11T11:24:50
{}
MEMBER
vuejs
core
1,124,409,812
3,324
yyx990803
The logic isn't entirely the same.
2022-05-12T00:35:59
2022-05-12T00:35:59
{}
MEMBER
vuejs
core
1,124,439,276
5,145
netlify[bot]
### <span aria-hidden="true">✅</span> Deploy Preview for *vue-next-template-explorer* ready! | Name | Link | |---------------------------------|------------------------| |<span aria-hidden="true">🔨</span> Latest commit | d715a9d3c3e4b3cec4cbabcf8dbf0a6779e0c702 | |<span aria-hidden="true">🔍</span> Latest deploy lo...
2022-05-12T01:27:50
2022-05-12T01:31:51
{}
NONE
vuejs
core
1,124,453,285
5,537
sudongyuer
This test case can fix this #5541
2022-05-12T02:00:01
2022-05-12T02:00:01
{}
CONTRIBUTOR
vuejs
core
1,124,511,184
5,903
netlify[bot]
### <span aria-hidden="true">✅</span> Deploy Preview for *vuejs-coverage* ready! | Name | Link | |---------------------------------|------------------------| |<span aria-hidden="true">🔨</span> Latest commit | ba466ed48ecf723923cc9663f5363c82e94cbdee | |<span aria-hidden="true">🔍</span> Latest deploy log | https://...
2022-05-12T04:12:53
2022-05-12T04:17:56
{}
NONE
vuejs
core
1,121,775,505
3,203
yyx990803
I think the original code with the comment more clearly explains the intention here.
2022-05-10T01:41:55
2022-05-10T01:41:55
{}
MEMBER
vuejs
core
1,121,781,613
4,121
netlify[bot]
### <span aria-hidden="true">❌</span> Deploy Preview for *vue-next-template-explorer* failed. | Name | Link | |---------------------------------|------------------------| |<span aria-hidden="true">🔨</span> Latest commit | ad48bd03022922142393828d57f2b3952051a5e8 | |<span aria-hidden="true">🔍</span> Latest deploy l...
2022-05-10T01:57:05
2022-05-10T01:58:18
{}
NONE
vuejs
core
1,121,791,927
3,867
yyx990803
PR was stale due to SSR refactor in 3.2 so I landed it in a separate commit.
2022-05-10T02:06:17
2022-05-10T02:06:17
{}
MEMBER
vuejs
core
1,122,253,833
5,886
liulinboyi
![image](https://user-images.githubusercontent.com/41336612/167615332-298b1a09-76ba-4c48-8eae-49df213e8fe1.png) write like this in template, every render will generate a new object. ![image](https://user-images.githubusercontent.com/41336612/167615999-2eb56468-1e06-43d0-be89-524525833539.png) value and oldValu...
2022-05-10T11:15:05
2022-05-10T11:15:05
{}
MEMBER
vuejs
core
1,122,472,721
5,889
netlify[bot]
### <span aria-hidden="true">✅</span> Deploy Preview for *vue-next-template-explorer* ready! | Name | Link | |---------------------------------|------------------------| |<span aria-hidden="true">🔨</span> Latest commit | 8c1e3facf22d90c5a10d3c8859c26e8690914edf | |<span aria-hidden="true">🔍</span> Latest deploy lo...
2022-05-10T14:28:10
2022-05-10T14:39:44
{}
NONE
vuejs
core
1,068,834,687
5,177
netlify[bot]
### <span aria-hidden="true">✅</span> Deploy Preview for *vuejs-coverage* ready! | Name | Link | |---------------------------------|------------------------| |<span aria-hidden="true">🔨</span> Latest commit | 47cd33ae6dbb6baa1ce3636e1198de2aabd1e218 | |<span aria-hidden="true">🔍</span> Latest deploy log | https://...
2022-03-16T07:55:20
2022-05-11T01:50:54
{}
NONE
vuejs
core
1,123,512,216
5,546
yyx990803
Duplicate of #5189 and fixed by 51f3d386
2022-05-11T10:14:11
2022-05-11T10:14:11
{}
MEMBER
vuejs
core
1,123,868,796
5,898
netlify[bot]
### <span aria-hidden="true">✅</span> Deploy Preview for *vuejs-coverage* ready! | Name | Link | |---------------------------------|------------------------| |<span aria-hidden="true">🔨</span> Latest commit | bf1a8c7130fc5e6c6a03df848798f99c6ec8b266 | |<span aria-hidden="true">🔍</span> Latest deploy log | https://...
2022-05-11T14:43:38
2022-05-11T16:58:29
{}
NONE
vuejs
core
1,124,302,763
5,900
LinusBorg
I think this is not really feasable as it's ambiguous. an non-namespaced Component means "use the value of the variable of this name as the component. You now want it to mean: "Use the default property on the variable with this name as the component if ...", well, if what? It could be a runtime check, but then ...
2022-05-11T21:16:20
2022-05-11T21:16:20
{}
MEMBER
vuejs
core
1,123,419,062
5,218
rennzhang
I support <script name=" xxx" > Is there any relevant plan?
2022-05-11T09:22:40
2022-05-11T09:22:40
{}
NONE
vuejs
core
1,124,414,481
4,223
yyx990803
Already exported in 2b588cf1bc03329576b8759c9072e3e551b739f1
2022-05-12T00:46:22
2022-05-12T00:46:22
{}
MEMBER
vuejs
core
1,122,212,379
4,818
netlify[bot]
### <span aria-hidden="true">✅</span> Deploy Preview for *vue-next-template-explorer* ready! | Name | Link | |---------------------------------|------------------------| |<span aria-hidden="true">🔨</span> Latest commit | c233f4497d83c455f6e3746ca86cb29fb8d91c26 | |<span aria-hidden="true">🔍</span> Latest deploy lo...
2022-05-10T10:31:09
2022-05-10T10:32:15
{}
NONE
vuejs
core
1,122,310,954
5,888
LinusBorg
when you choose not to use v-model, you need to handle the select element and it's option elements yourself. in a plain `multiple`select, you can't assign an array to `value`, that's not how selects work. you have to set the `selected`attribute on each `<option>` that matches a value in the array. `v-model`handle...
2022-05-10T12:14:10
2022-05-10T12:14:10
{}
MEMBER
vuejs
core
1,123,223,691
5,894
reksc
Thanks @LinusBorg, appreciate your answer a lot! I think this is quite a powerful pattern ~~that perhaps could be a bit more emphasized in the examples and other sections of the documentation~~ that is pretty well documented ;).
2022-05-11T06:09:08
2022-05-11T06:16:50
{}
NONE
vuejs
core
1,121,774,758
3,217
netlify[bot]
### <span aria-hidden="true">❌</span> Deploy Preview for *vuejs-coverage* failed. | Name | Link | |---------------------------------|------------------------| |<span aria-hidden="true">🔨</span> Latest commit | af24f0bd1d62c243780b512d910aeb5bc4897bed | |<span aria-hidden="true">🔍</span> Latest deploy log | https:/...
2022-05-10T01:40:08
2022-05-10T01:43:12
{}
NONE
vuejs
core
1,121,777,132
2,971
yyx990803
Closing as stale - the consistency doesn't hurt, and removing it affects more places now compared to when the original PR was opened.
2022-05-10T01:45:57
2022-05-10T01:45:57
{}
MEMBER
vuejs
core
1,122,066,086
4,900
netlify[bot]
### <span aria-hidden="true">❌</span> Deploy Preview for *vue-next-template-explorer* failed. | Name | Link | |---------------------------------|------------------------| |<span aria-hidden="true">🔨</span> Latest commit | 565263b48527212c26a0ba7bd37e694078d90565 | |<span aria-hidden="true">🔍</span> Latest deploy l...
2022-05-10T08:07:41
2022-05-10T08:08:12
{}
NONE
vuejs
core
1,123,625,510
3,473
netlify[bot]
### <span aria-hidden="true">✅</span> Deploy Preview for *vue-next-template-explorer* ready! | Name | Link | |---------------------------------|------------------------| |<span aria-hidden="true">🔨</span> Latest commit | 6155318359308c78d094ecf2b7483146016fd3ad | |<span aria-hidden="true">🔍</span> Latest deploy lo...
2022-05-11T11:34:58
2022-05-11T11:35:59
{}
NONE
vuejs
core
1,123,868,795
5,898
netlify[bot]
### <span aria-hidden="true">✅</span> Deploy Preview for *vue-next-template-explorer* ready! | Name | Link | |---------------------------------|------------------------| |<span aria-hidden="true">🔨</span> Latest commit | bf1a8c7130fc5e6c6a03df848798f99c6ec8b266 | |<span aria-hidden="true">🔍</span> Latest deploy lo...
2022-05-11T14:43:38
2022-05-11T16:49:44
{}
NONE
vuejs
core
1,124,414,146
3,947
yyx990803
Thanks for the PR but this needs to be updated across tests as well - see 54753c34
2022-05-12T00:45:40
2022-05-12T00:45:40
{}
MEMBER
vuejs
core
1,019,861,876
5,315
netlify[bot]
### <span aria-hidden="true">✅</span> Deploy Preview for *vue-sfc-playground* ready! | Name | Link | |---------------------------------|------------------------| |<span aria-hidden="true">🔨</span> Latest commit | bc50c9915ed84a27ad6749bcfc8f9cc982a5e519 | |<span aria-hidden="true">🔍</span> Latest deploy log | http...
2022-01-24T08:57:44
2022-05-12T01:38:56
{}
NONE
vuejs
core
1,123,391,980
4,835
yyx990803
The snapshots now leads to a lot of conflicts due to 57bb37bd so I had to manually port the change based on this PR to in https://github.com/vuejs/core/commit/41d255ba5ddd40f1a1dd2dd6add01f38e20d6325 - thanks and sorry for not doing this earlier!
2022-05-11T08:59:13
2022-05-11T08:59:13
{}
MEMBER
vuejs
core
1,124,442,487
5,499
yyx990803
This should be configured in your own global git config instead of putting it in every repo you happen to work on.
2022-05-12T01:34:09
2022-05-12T01:34:09
{}
MEMBER
vuejs
core
1,124,444,144
5,745
yyx990803
This is now stale - see https://github.com/vuejs/core/commit/83aaa9b5469072f43314b11388e5985b77597acd
2022-05-12T01:38:00
2022-05-12T01:38:00
{}
MEMBER
vuejs
core
1,124,511,189
5,903
netlify[bot]
### <span aria-hidden="true">✅</span> Deploy Preview for *vue-next-template-explorer* ready! | Name | Link | |---------------------------------|------------------------| |<span aria-hidden="true">🔨</span> Latest commit | ba466ed48ecf723923cc9663f5363c82e94cbdee | |<span aria-hidden="true">🔍</span> Latest deploy lo...
2022-05-12T04:12:54
2022-05-12T04:13:47
{}
NONE
vuejs
core
1,120,359,720
5,879
netlify[bot]
### <span aria-hidden="true">✅</span> Deploy Preview for *vue-sfc-playground* ready! | Name | Link | |---------------------------------|------------------------| |<span aria-hidden="true">🔨</span> Latest commit | c608823f0551ea160ec2eb59523eb39dd54b9b60 | |<span aria-hidden="true">🔍</span> Latest deploy log | http...
2022-05-08T06:32:00
2022-05-10T10:01:11
{}
NONE
vuejs
core
1,122,212,180
4,818
netlify[bot]
### <span aria-hidden="true">✅</span> Deploy Preview for *vue-sfc-playground* ready! | Name | Link | |---------------------------------|------------------------| |<span aria-hidden="true">🔨</span> Latest commit | c233f4497d83c455f6e3746ca86cb29fb8d91c26 | |<span aria-hidden="true">🔍</span> Latest deploy log | http...
2022-05-10T10:30:55
2022-05-10T10:34:02
{}
NONE
vuejs
core
1,123,084,408
5,886
gezhigang1005
> The correct [example](https://sfc.vuejs.org/#eyJBcHAudnVlIjoiPHNjcmlwdCBzZXR1cD5cbmltcG9ydCB7IHJlZiwgcmVhY3RpdmUgfSBmcm9tICd2dWUnXG5pbXBvcnQgQ29tcCBmcm9tICcuL0NvbXAudnVlJ1xuXG5jb25zdCBmb3JtID0gcmVhY3RpdmUoe2lkOiAxfSlcbmNvbnN0IHF1ZXJ5ID0geyBpZDogZm9ybS5pZCB9XG4gIFxuICBcbmNvbnN0IG1zZyA9IHJlZignSGVsbG8gV29ybGQhJylcbjwvc...
2022-05-11T01:34:31
2022-05-11T01:34:31
{}
NONE
vuejs
core
1,123,181,663
3,957
yyx990803
Should not alter default `hoistStatic` option - see 57bb37bd
2022-05-11T04:45:31
2022-05-11T04:45:31
{}
MEMBER
vuejs
core
1,124,405,697
3,205
yyx990803
Closing as stale
2022-05-12T00:25:53
2022-05-12T00:25:53
{}
MEMBER
vuejs
core
1,124,439,272
5,145
netlify[bot]
### <span aria-hidden="true">✅</span> Deploy Preview for *vue-sfc-playground* ready! | Name | Link | |---------------------------------|------------------------| |<span aria-hidden="true">🔨</span> Latest commit | d715a9d3c3e4b3cec4cbabcf8dbf0a6779e0c702 | |<span aria-hidden="true">🔍</span> Latest deploy log | http...
2022-05-12T01:27:50
2022-05-12T01:36:12
{}
NONE
vuejs
core
1,124,443,341
5,537
yyx990803
This doesn't seem to be testing anything different from the test case above, nor does it fix anything.
2022-05-12T01:36:12
2022-05-12T01:36:12
{}
MEMBER
vuejs
core
1,121,779,200
5,501
yyx990803
duplicate of #3203
2022-05-10T01:51:19
2022-05-10T01:51:19
{}
MEMBER
vuejs
core
1,122,794,256
5,890
netlify[bot]
### <span aria-hidden="true">✅</span> Deploy Preview for *vue-sfc-playground* ready! | Name | Link | |---------------------------------|------------------------| |<span aria-hidden="true">🔨</span> Latest commit | e2796b4a17e9196c8cbe3a1ae6e6ad37ee35e9df | |<span aria-hidden="true">🔍</span> Latest deploy log | http...
2022-05-10T19:45:31
2022-05-10T19:48:55
{}
NONE
vuejs
core
1,123,390,713
4,834
yyx990803
I think #4835 handles the case of mixed URLs better so I based 41d255ba off of that.
2022-05-11T08:58:03
2022-05-11T08:58:03
{ "hooray": 1 }
MEMBER
vuejs
core
1,124,408,840
5,727
yyx990803
I introduced lint to CI in 1414f17 before seeing this PR - I grouped it with dts tests to reduce the parallel run since even with both combined they are faster than the main test suite. The lockfile also has a bunch of conflicts now, could we rebase this?
2022-05-12T00:33:43
2022-05-12T00:33:43
{}
MEMBER
vuejs
core
1,124,410,396
3,592
netlify[bot]
### <span aria-hidden="true">❌</span> Deploy Preview for *vuejs-coverage* failed. | Name | Link | |---------------------------------|------------------------| |<span aria-hidden="true">🔨</span> Latest commit | d99a9cb303be30187a0c4c19e088d05b6a0a0092 | |<span aria-hidden="true">🔍</span> Latest deploy log | https:/...
2022-05-12T00:37:25
2022-05-12T00:38:53
{}
NONE
vuejs
core
1,124,516,405
5,747
liulinboyi
This issue is fixed by [commit](https://github.com/vuejs/core/commit/da49c863a21fb9d9de4a1b816dcc4faff8046fdb).
2022-05-12T04:24:47
2022-05-12T04:33:12
{ "+1": 1 }
MEMBER
vuejs
core
1,121,781,610
4,121
netlify[bot]
### <span aria-hidden="true">❌</span> Deploy Preview for *vuejs-coverage* failed. | Name | Link | |---------------------------------|------------------------| |<span aria-hidden="true">🔨</span> Latest commit | ad48bd03022922142393828d57f2b3952051a5e8 | |<span aria-hidden="true">🔍</span> Latest deploy log | https:/...
2022-05-10T01:57:05
2022-05-10T01:58:34
{}
NONE
vuejs
core
1,122,066,091
4,900
netlify[bot]
### <span aria-hidden="true">❌</span> Deploy Preview for *vuejs-coverage* failed. | Name | Link | |---------------------------------|------------------------| |<span aria-hidden="true">🔨</span> Latest commit | 565263b48527212c26a0ba7bd37e694078d90565 | |<span aria-hidden="true">🔍</span> Latest deploy log | https:/...
2022-05-10T08:07:41
2022-05-10T08:08:17
{}
NONE
vuejs
core
1,122,312,628
5,885
LinusBorg
Took the freedom of changing the title to better reflect the issue.
2022-05-10T12:15:49
2022-05-10T12:15:49
{ "+1": 1 }
MEMBER
vuejs
core
1,122,794,246
5,890
netlify[bot]
### <span aria-hidden="true">✅</span> Deploy Preview for *vue-next-template-explorer* ready! | Name | Link | |---------------------------------|------------------------| |<span aria-hidden="true">🔨</span> Latest commit | e2796b4a17e9196c8cbe3a1ae6e6ad37ee35e9df | |<span aria-hidden="true">🔍</span> Latest deploy lo...
2022-05-10T19:45:30
2022-05-10T19:46:22
{}
NONE
vuejs
core
1,123,228,044
5,893
LinusBorg
If you want to make your app explicitly more forgiving in such situations, use Vue's error handling: https://vuejs.org/api/application.html#app-config-errorhandler https://vuejs.org/api/composition-api-lifecycle.html#onerrorcaptured
2022-05-11T06:15:38
2022-05-11T06:15:38
{}
MEMBER
vuejs
core
1,123,419,660
4,980
yyx990803
I fixed this because it's a dev/prod behavior inconsistency, but it's non optimal since it requires proxying everything over `this`. I think in most cases manual render fn / JSX users should just return therender fn `setup()` in plain JS/TS, but there are some cases you may want to write render functions in an SFC t...
2022-05-11T09:23:09
2022-05-11T09:23:09
{ "+1": 12, "eyes": 6 }
MEMBER
vuejs
core
1,123,868,879
5,898
netlify[bot]
### <span aria-hidden="true">✅</span> Deploy Preview for *vue-sfc-playground* ready! | Name | Link | |---------------------------------|------------------------| |<span aria-hidden="true">🔨</span> Latest commit | bf1a8c7130fc5e6c6a03df848798f99c6ec8b266 | |<span aria-hidden="true">🔍</span> Latest deploy log | http...
2022-05-11T14:43:42
2022-05-11T16:53:31
{}
NONE
vuejs
core
1,019,861,872
5,315
netlify[bot]
### <span aria-hidden="true">✅</span> Deploy Preview for *vuejs-coverage* ready! | Name | Link | |---------------------------------|------------------------| |<span aria-hidden="true">🔨</span> Latest commit | bc50c9915ed84a27ad6749bcfc8f9cc982a5e519 | |<span aria-hidden="true">🔍</span> Latest deploy log | https://...
2022-01-24T08:57:44
2022-05-12T01:42:02
{}
NONE
vuejs
core
1,121,830,024
5,193
yyx990803
Closing as stale due to the heavy conflicts in changelog.md, which is auto generated.
2022-05-10T02:50:32
2022-05-10T02:50:32
{}
MEMBER
vuejs
core
1,122,794,249
5,890
netlify[bot]
### <span aria-hidden="true">✅</span> Deploy Preview for *vuejs-coverage* ready! | Name | Link | |---------------------------------|------------------------| |<span aria-hidden="true">🔨</span> Latest commit | e2796b4a17e9196c8cbe3a1ae6e6ad37ee35e9df | |<span aria-hidden="true">🔍</span> Latest deploy log | https://...
2022-05-10T19:45:30
2022-05-10T19:51:05
{}
NONE
vuejs
core
1,068,834,682
5,177
netlify[bot]
### <span aria-hidden="true">✅</span> Deploy Preview for *vue-next-template-explorer* ready! | Name | Link | |---------------------------------|------------------------| |<span aria-hidden="true">🔨</span> Latest commit | 47cd33ae6dbb6baa1ce3636e1198de2aabd1e218 | |<span aria-hidden="true">🔍</span> Latest deploy lo...
2022-03-16T07:55:19
2022-05-11T01:47:04
{}
NONE
vuejs
core
1,124,410,402
3,592
netlify[bot]
### <span aria-hidden="true">❌</span> Deploy Preview for *vue-next-template-explorer* failed. | Name | Link | |---------------------------------|------------------------| |<span aria-hidden="true">🔨</span> Latest commit | d99a9cb303be30187a0c4c19e088d05b6a0a0092 | |<span aria-hidden="true">🔍</span> Latest deploy l...
2022-05-12T00:37:25
2022-05-12T00:38:47
{}
NONE
vuejs
core
1,121,774,760
3,217
netlify[bot]
### <span aria-hidden="true">✅</span> Deploy Preview for *vue-next-template-explorer* ready! | Name | Link | |---------------------------------|------------------------| |<span aria-hidden="true">🔨</span> Latest commit | af24f0bd1d62c243780b512d910aeb5bc4897bed | |<span aria-hidden="true">🔍</span> Latest deploy lo...
2022-05-10T01:40:08
2022-05-10T01:40:49
{}
NONE