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
560,131,840
500
yyx990803
👍
2019-12-01T17:04:25
2019-12-01T17:04:25
{}
MEMBER
vuejs
core
560,186,633
501
underfin
Year. I will work it.
2019-12-02T01:14:39
2019-12-02T01:14:39
{}
MEMBER
vuejs
core
562,126,934
523
damianstasik
Yeah, nested ternary indent was removed and especially here you can see how it negatively affects the readability: https://github.com/fisker/vue-next/blob/ff6341a95f48754bc1a1644aa47f069db5eb107b/packages/reactivity/src/ref.ts#L93-L103
2019-12-05T13:24:03
2019-12-05T13:24:03
{ "+1": 1 }
NONE
vuejs
core
562,204,817
517
yyx990803
@CodinCat that would be great!
2019-12-05T16:26:52
2019-12-05T16:26:52
{ "+1": 1 }
MEMBER
vuejs
core
563,294,306
508
yyx990803
@XRenSiu I don't understand what you are trying to do, but your snippet is providing an empty scheduler which never calls the re-runs. That's why the effect is only called once (the initial run).
2019-12-09T15:33:29
2019-12-09T15:33:29
{}
MEMBER
vuejs
core
564,582,564
526
vue-bot
Hey @CodinCat, thank you for your time and effort spent on this PR, contributions like yours help make Vue better for everyone. Cheers! 💚
2019-12-11T14:56:17
2019-12-11T14:56:17
{}
CONTRIBUTOR
vuejs
core
567,088,869
546
yangmingshan
Test added.
2019-12-18T15:47:10
2019-12-18T15:47:10
{}
CONTRIBUTOR
vuejs
core
557,461,159
479
0xPoe
> What he meant is that the formatter adds that semicolon and that we don’t accept code formatting Pull requests because the formatting is automatic so we can avoid any formatting discussion like this one Got it. Thank you.
2019-11-22T09:34:27
2019-11-22T09:34:27
{}
CONTRIBUTOR
vuejs
core
557,968,495
310
vue-bot
Hey @underfin, thank you for your time and effort spent on this PR, contributions like yours help make Vue better for everyone. Cheers! 💚
2019-11-25T03:09:28
2019-11-25T03:09:28
{}
CONTRIBUTOR
vuejs
core
558,374,795
495
yyx990803
Which RFC are you referring to? We are removing `slots` from reserved props. The only to pass slots would be via `h` arguments. If you are seeing reference to `slots` as a reserved prop, the RFC is probably outdated and we need to fix it.
2019-11-25T22:45:43
2019-11-25T22:45:43
{}
MEMBER
vuejs
core
558,670,796
495
yyx990803
Thanks, fixed.
2019-11-26T15:04:42
2019-11-26T15:04:42
{}
MEMBER
vuejs
core
560,480,961
472
vue-bot
Hey @Rustin-Liu, thank you for your time and effort spent on this PR, contributions like yours help make Vue better for everyone. Cheers! 💚
2019-12-02T16:50:35
2019-12-02T16:50:35
{}
CONTRIBUTOR
vuejs
core
567,116,932
547
vue-bot
Hey @djy0, thank you for your time and effort spent on this PR, contributions like yours help make Vue better for everyone. Cheers! 💚
2019-12-18T16:50:30
2019-12-18T16:50:30
{}
CONTRIBUTOR
vuejs
core
557,460,933
479
posva
What he meant is that the formatter adds that semicolon and that we don’t accept code formatting Pull requests because the formatting is automatic so we can avoid any formatting discussion like this one
2019-11-22T09:33:46
2019-11-22T09:33:46
{}
MEMBER
vuejs
core
557,769,163
484
yyx990803
This is intentional. `new Array` with fixed length is faster to fill.
2019-11-23T05:34:19
2019-11-23T05:34:19
{ "+1": 1, "rocket": 1 }
MEMBER
vuejs
core
558,644,479
485
vue-bot
Hey @loiacon, thank you for your time and effort spent on this PR, contributions like yours help make Vue better for everyone. Cheers! 💚
2019-11-26T14:07:24
2019-11-26T14:07:24
{}
CONTRIBUTOR
vuejs
core
558,656,102
495
yyx990803
Thanks, updated: https://github.com/vuejs/rfcs/commit/b7888b39b2cb6bc9161c8539d236dd7e5bf1b45c
2019-11-26T14:33:03
2019-11-26T14:33:03
{}
MEMBER
vuejs
core
558,676,562
500
yyx990803
The reason I left them as TODO is because we probably want to redo this to use `import` instead. For example, currently ``` html <img src="./logo.png" srcset="./logo.png"/> ``` is compiled to: ``` js createVNode('img', { src: require("./logo.png") }) ``` But inline `require` is somewhat a legacy ...
2019-11-26T15:16:26
2019-11-26T15:17:08
{ "+1": 2 }
MEMBER
vuejs
core
561,593,970
517
vue-bot
Hey @CodinCat, thank you for your time and effort spent on this PR, contributions like yours help make Vue better for everyone. Cheers! 💚
2019-12-04T10:58:53
2019-12-04T10:58:53
{}
CONTRIBUTOR
vuejs
core
563,391,248
527
yyx990803
The parameter *is* required, but it can be an `undefined` value. This is different from an optional parameter.
2019-12-09T19:20:31
2019-12-09T19:20:31
{}
MEMBER
vuejs
core
563,880,519
504
theniceangel
> Thanks for the PR, but this is a `runtime-core` test and should be platform agnostic (using `@vue/runtime-test` instead. Is it enough to replace it with `@vue/runtime-test` ? Should I add more tests ? actually, I do not know which kinds of tests need be added, since it is so basic and tested in other tests, such a...
2019-12-10T06:09:23
2019-12-10T06:09:23
{}
CONTRIBUTOR
vuejs
core
565,397,106
541
vue-bot
Hey @a631807682, thank you for your time and effort spent on this PR, contributions like yours help make Vue better for everyone. Cheers! 💚
2019-12-13T10:54:04
2019-12-13T10:54:04
{}
CONTRIBUTOR
vuejs
core
567,539,994
549
CyberAP
`withComponentAnnotations`?
2019-12-19T15:36:23
2019-12-19T15:36:23
{ "+1": 1 }
CONTRIBUTOR
vuejs
core
564,578,836
535
yyx990803
I think it's better to keep it where it is since it's only used in `effect.ts`.
2019-12-11T14:48:20
2019-12-11T14:48:20
{}
MEMBER
vuejs
core
567,959,740
549
thecrypticace
I was thinking this exact thing. `component` seems reasonable.
2019-12-20T15:17:21
2019-12-20T15:17:21
{ "+1": 1 }
CONTRIBUTOR
vuejs
core
567,966,852
549
chrisvfritz
I'm good with `withComponentAnnotations` - or perhaps preferably, `annotateComponent` - as an alternative, since it also gives us a pattern we can follow for type annotation functions like this. The only reason I still like `define` better is `annotate` is harder to spell, especially for our international users. I w...
2019-12-20T15:37:42
2019-12-20T15:40:38
{ "+1": 3 }
CONTRIBUTOR
vuejs
core
568,399,092
558
dependabot-preview[bot]
One of your CI runs failed on this pull request, so Dependabot won't merge it. - [deploy/netlify](https://app.netlify.com/sites/vue-next-coverage/deploys/5e0071ae3badb900083ecb80) - [Mixed content](https://app.netlify.com/sites/vue-next-coverage/deploys/5e0071ae3badb900083ecb80) - [Redirect rules](https://app.netlify....
2019-12-23T08:20:10
2019-12-23T08:20:10
{}
CONTRIBUTOR
vuejs
core
568,399,093
558
dependabot-preview[bot]
One of your CI runs failed on this pull request, so Dependabot won't merge it. - [deploy/netlify](https://app.netlify.com/sites/vue-next-coverage/deploys/5e0071ae3badb900083ecb80) - [Mixed content](https://app.netlify.com/sites/vue-next-coverage/deploys/5e0071ae3badb900083ecb80) - [Redirect rules](https://app.netlify....
2019-12-23T08:20:10
2019-12-23T08:20:10
{}
CONTRIBUTOR
vuejs
core
558,410,881
457
theniceangel
> 简单来说,以后默认所有没有被声明为 props 的属性(包括 class, style, 事件和普通的 attribute)都会被子组件的根元素继承。如果想要订制这个行为,就用 `inhertiAttrs: false` 然后自己在子元素里绑定 `$attrs`。 应该是 `inheritAttrs: false`
2019-11-26T01:01:15
2019-11-26T01:01:15
{}
CONTRIBUTOR
vuejs
core
560,131,855
501
yyx990803
Could you update this one based on #500?
2019-12-01T17:04:39
2019-12-01T17:04:39
{}
MEMBER
vuejs
core
562,056,834
517
CodinCat
@yyx990803 I can help with adding tests for other examples. Or do you already have plans on it?
2019-12-05T09:57:54
2019-12-05T11:08:11
{}
CONTRIBUTOR
vuejs
core
562,100,684
523
rigor789
I believe it has been kept at 1.14 due to a major styling change that @yyx990803 didn't want. See https://github.com/vuejs/vue-next/pull/44
2019-12-05T12:03:09
2019-12-05T12:03:09
{ "+1": 1 }
CONTRIBUTOR
vuejs
core
568,307,299
553
yyx990803
The `esm-bundler.js` builds leaves compile-time flags like `process.env.NODE_ENV` as-is, to be replaced by your bundler. We may have more flags you can overwrite in the future, so that you can selectively drop certain features that cannot be easily tree-shaken, but you are sure you don't need. So if you are using it wi...
2019-12-22T22:15:46
2019-12-22T22:15:46
{ "+1": 1 }
MEMBER
vuejs
core
568,510,468
559
yyx990803
@dependabot rebase
2019-12-23T15:54:07
2019-12-23T15:54:07
{ "+1": 1 }
MEMBER
vuejs
core
568,524,084
553
zigomir
Nice, thank you both very much! All clear now :)
2019-12-23T16:50:24
2019-12-23T16:50:24
{}
NONE
vuejs
core
557,460,564
479
Justineo
> I tried to use yarn lint to format code but it still in there. It means it's formatted this way indeed. See also #156.
2019-11-22T09:32:39
2019-11-22T09:32:39
{}
MEMBER
vuejs
core
558,520,227
496
vue-bot
Hey @theniceangel, thank you for your time and effort spent on this PR, contributions like yours help make Vue better for everyone. Cheers! 💚
2019-11-26T08:32:54
2019-11-26T08:32:54
{}
CONTRIBUTOR
vuejs
core
559,837,818
508
yyx990803
What's the reason for adding this? This doesn't seem necessary to me. Please make sure to provide detailed explanation for adding a new feature.
2019-11-29T16:24:49
2019-11-29T16:25:29
{}
MEMBER
vuejs
core
562,360,905
524
vue-bot
Hey @ztplz, thank you for your time and effort spent on this PR, contributions like yours help make Vue better for everyone. Cheers! 💚
2019-12-05T23:15:08
2019-12-05T23:15:08
{}
CONTRIBUTOR
vuejs
core
719,599,146
2,526
edison1105
``` javsscript <Child @EnlargeText="onEnlargeText" /> ``` works
2020-10-30T14:52:16
2020-10-30T14:52:16
{ "+1": 2 }
MEMBER
vuejs
core
721,017,419
2,547
LinusBorg
Please provide a reproduction and a proper description.
2020-11-03T09:59:47
2020-11-03T09:59:47
{}
MEMBER
vuejs
core
718,337,576
1,356
xiaoxiangmoe
this issue is still actionable. See example: ```ts import { h } from 'vue' // @ts-expect-error Parameter 'event' implicitly has an 'any' type.ts(7006) export default h('button',{ onClick: event => { console.log(event) } }) ```
2020-10-29T03:32:54
2020-10-29T03:32:54
{ "+1": 2 }
CONTRIBUTOR
vuejs
core
718,608,881
2,116
CyberAP
Should the watch trigger if the reactive property is mutated then? ```js const state = reactive({ items: ['foo'] }) watch(() => state.items, callback) state.items.push('bar') // should it trigger watcher? ```
2020-10-29T10:27:01
2020-10-29T10:27:01
{}
CONTRIBUTOR
vuejs
core
719,836,213
1,553
tcastelly
ok thank you :)
2020-10-30T23:00:56
2020-10-30T23:00:56
{}
NONE
vuejs
core
720,907,943
2,540
shadowings-zy
Hello, I fix the `isEmitListener` function in PR #2542 and now it works correctly. : )
2020-11-03T05:12:11
2020-11-03T05:12:11
{}
CONTRIBUTOR
vuejs
core
720,923,493
2,540
shadowings-zy
> > Hello, > > I fix the `isEmitListener` function in PR #2542 and now it works correctly. > > : ) > > your PR not fix this. > warning still shown and works incorrectly. > did you test that? Are you sure? I test the PR and warning not appear. And the unit test I add was passed <img width="1065" alt="截屏202...
2020-11-03T06:07:15
2020-11-03T06:08:35
{}
CONTRIBUTOR
vuejs
core
720,929,105
2,545
dependabot-preview[bot]
One of your CI runs failed on this pull request, so Dependabot won't merge it. - [ci/circleci: test](https://circleci.com/gh/vuejs/vue-next/10670?utm_campaign=vcs-integration-link&utm_medium=referral&utm_source=github-build-link) Dependabot will still automatically merge this pull request if you amend it and your tes...
2020-11-03T06:25:04
2020-11-03T06:25:04
{}
CONTRIBUTOR
vuejs
core
720,958,807
1,925
smilingkite
What's the status of this?
2020-11-03T07:50:44
2020-11-03T07:50:44
{}
NONE
vuejs
core
721,171,526
2,539
yyx990803
Thanks, it should be importing it from `runtime-core` instead (which re-exports it from `@vue/reactivity`). Fixed in f28ca556
2020-11-03T14:55:22
2020-11-03T14:55:22
{ "+1": 1 }
MEMBER
vuejs
core
718,987,981
1,553
tcastelly
Maybe I do something wrong. On a tsx file I can't do something like this: ```javascript const customClick = () => {} ``` ```jsx <CustomBtn on={{ customClick }} /> ``` I have this error: ``` Error:(7, 16) TS2322: Type '{ on: {}; }' is not assignable to type 'IntrinsicAttributes & Partial<{}> & Pick<Readon...
2020-10-29T20:00:46
2020-10-29T20:00:46
{}
NONE
vuejs
core
719,169,858
2,515
sajuthankathurai
Is there any workaround to solve this issue or we need to wait till next build of Vue?
2020-10-30T04:52:51
2020-10-30T04:52:51
{}
NONE
vuejs
core
719,478,670
2,525
cathrinevaage
This is not reproducible when creating a fresh new project with e.g vite. Even though, in codesandbox, the compiler is clamped to `^3.0.1`, the wrong behaviour persists. I suspect this is an issue at their end instead. Closing.
2020-10-30T10:42:03
2020-10-30T10:42:03
{}
CONTRIBUTOR
vuejs
core
720,826,607
2,540
edison1105
`@test-change="(evt) => console.log(evt.target.value)"` is recommended
2020-11-03T01:22:25
2020-11-03T01:22:25
{}
MEMBER
vuejs
core
720,918,079
2,540
edison1105
> Hello, > I fix the `isEmitListener` function in PR #2542 and now it works correctly. > > : ) your PR not fix this. warning still shown and works incorrectly. did you test that?
2020-11-03T05:49:50
2020-11-03T05:49:50
{}
MEMBER
vuejs
core
721,282,567
2,552
github-actions[bot]
## Size report | Path | Size | | -------------------------- | ------------- | | vue.global.prod.js | 40.15 KB (0%) | | runtime-dom.global.prod.js | 26.43 KB (0%) | | size-check.global.prod.js | 15.95 KB (0%) |
2020-11-03T17:49:29
2020-11-03T18:04:27
{}
NONE
vuejs
core
718,542,032
1,356
LinusBorg
Thanks
2020-10-29T09:29:24
2020-10-29T09:29:24
{}
MEMBER
vuejs
core
719,628,162
2,524
skirtles-code
OK. @HcySunYang The 'second problem' is not directly about re-rendering when the props change. That's just a necessary step along the way. The problem is what happens the next time the data changes after that.
2020-10-30T15:40:05
2020-10-30T15:40:05
{}
CONTRIBUTOR
vuejs
core
719,705,959
2,529
github-actions[bot]
## Size report | Path | Size | | -------------------------- | ------------- | | vue.global.prod.js | 40.15 KB (0%) | | runtime-dom.global.prod.js | 26.43 KB (0%) | | size-check.global.prod.js | 15.95 KB (0%) |
2020-10-30T17:54:43
2020-10-30T17:54:43
{}
NONE
vuejs
core
719,942,323
2,530
LinusBorg
Added a PR for the reported problem. Concerning your comments about the other details, I'd suggest to open a new issue (or several). The commits you commented on are a couple months old now, we might need a central place to discuss them.
2020-10-31T14:35:34
2020-10-31T14:35:34
{}
MEMBER
vuejs
core
720,961,033
1,925
LinusBorg
It's as laid out here: https://github.com/vuejs/vue-next/releases/tag/v3.0.0
2020-11-03T07:56:26
2020-11-03T07:56:26
{ "eyes": 1 }
MEMBER
vuejs
core
720,962,288
2,523
posva
Please provide **boiled down** reproductions and open issues in English
2020-11-03T07:59:38
2020-11-03T07:59:38
{}
MEMBER
vuejs
core
718,815,316
2,517
github-actions[bot]
## Size report | Path | Size | | -------------------------- | ------------- | | vue.global.prod.js | 40.15 KB (0%) | | runtime-dom.global.prod.js | 26.43 KB (0%) | | size-check.global.prod.js | 15.95 KB (0%) |
2020-10-29T15:06:34
2020-10-29T15:06:34
{}
NONE
vuejs
core
718,815,830
2,519
github-actions[bot]
## Size report | Path | Size | | -------------------------- | ------------- | | vue.global.prod.js | 40.15 KB (0%) | | runtime-dom.global.prod.js | 26.43 KB (0%) | | size-check.global.prod.js | 15.95 KB (0%) |
2020-10-29T15:07:24
2020-10-29T15:07:24
{}
NONE
vuejs
core
719,571,905
2,527
IWANABETHATGUY
1. replace some unnecessary template literal
2020-10-30T14:05:02
2020-10-30T14:05:02
{}
NONE
vuejs
core
719,603,869
2,526
edison1105
see https://jsfiddle.net/yyx990803/3scy68d5/1/ ![image](https://user-images.githubusercontent.com/3705199/97720720-9135b500-1b03-11eb-986e-6beb83ba1d18.png)
2020-10-30T14:59:48
2020-10-30T14:59:48
{}
MEMBER
vuejs
core
720,268,186
2,538
github-actions[bot]
## Size report | Path | Size | | -------------------------- | ------------- | | vue.global.prod.js | 40.15 KB (0%) | | runtime-dom.global.prod.js | 26.43 KB (0%) | | size-check.global.prod.js | 15.95 KB (0%) |
2020-11-02T06:33:56
2020-11-02T06:33:56
{}
NONE
vuejs
core
721,025,158
2,546
LinusBorg
Workaround: use a different property name.
2020-11-03T10:15:35
2020-11-03T10:15:35
{}
MEMBER
vuejs
core
721,239,078
2,468
znck
SFC descriptor should keep all the blocks as some dev toolings depend on the structure of the file. e.g. VueDX/TS-Plugin auto imports components in `<script>` block but if `descriptor.script` is `null` it adds a `<script>` block.
2020-11-03T16:34:11
2020-11-03T16:34:11
{}
MEMBER
vuejs
core
718,635,928
2,116
CyberAP
I guess in that case it should stop triggering watcher if I watch the state object only. ```js const state = reactive({ items: ["foo"] }) watch(state, callback) state.items.push('bar') // will trigger watcher ``` But I still don't find it useful that it behaves exactly like objects, but maybe that's only ...
2020-10-29T10:46:01
2020-10-29T10:46:01
{}
CONTRIBUTOR
vuejs
core
718,642,279
2,116
LinusBorg
Hm. Yeah tbh I wasn't event aware of this. it's *implicitly* doing a deep watch - personally I don't think that's a good thing, deep watches can be expensive :-/ I now realize it was probably done so people don't wonder why nothing happens when they watch pass an object by itself, but ... not sure I like it.
2020-10-29T10:51:07
2020-10-29T10:59:20
{}
MEMBER
vuejs
core
718,816,866
2,516
cathrinevaage
This is expected behaviour. It's the same in Vue 2. If you want to use a component in your runtime compiled template, it has to be globally registered. Local is not registered. It doesn't matter if it's registered in wrapper. That would only allow you to use the component inside wrappers template. The slot is not con...
2020-10-29T15:08:54
2020-10-29T15:08:54
{}
CONTRIBUTOR
vuejs
core
719,605,838
2,526
boussadjra
> ![image](https://user-images.githubusercontent.com/11022464/97720579-31112580-1aa7-11eb-8ed7-0f7472f2b53a.png) > it doesn't raise a warning for me 🤔 @vhoyer i'm talking about the camelCase format which works but the linter raises a warning
2020-10-30T15:03:00
2020-10-30T15:03:00
{}
NONE
vuejs
core
719,622,118
2,524
edison1105
> I'm unclear what people mean when they say 'the second problem'. In my original bug report I mentioned two problems, in bullet points 1 and 3. The contents of bullet point 2 were a necessary step in reproducing the problem in bullet point 3. > > While it could be argued that the behaviour in bullet point 2 is also...
2020-10-30T15:30:24
2020-10-30T15:30:24
{}
MEMBER
vuejs
core
719,937,739
2,531
yaquawa
Thanks @skirtles-code ! Really helpful solution on the Stack Overflow. > It would be nice to have a way to reuse the transition logic in v-show without having to copy/paste/maintain it in a totally separate directive. Yeah, absolutely right. Or may be it could be a strategy function something like this. ```vue...
2020-10-31T13:58:08
2020-10-31T14:03:20
{}
NONE
vuejs
core
720,282,040
2,535
HcySunYang
You need to add a `key` to the slot: ```html <slot :name="activeTab" :key="activeTab"></slot> ```
2020-11-02T07:08:11
2020-11-02T07:08:11
{ "+1": 2 }
MEMBER
vuejs
core
720,678,580
2,541
LinusBorg
Source of the problem is the same as #2540 Will close this as a duplicate
2020-11-02T19:30:07
2020-11-02T19:30:07
{}
MEMBER
vuejs
core
720,933,021
2,540
shadowings-zy
> here is my code, is there something wrong ?😭 > > ```js > <script src="../../dist/vue.global.js"></script> > > <div id="app"> > <Comp msg="string input" @testChange="(evt) => console.log(evt.target.value)"></Comp> > </div> > > <script> > const { createApp, defineComponent,h } = Vue > > const C...
2020-11-03T06:36:31
2020-11-03T06:36:31
{}
CONTRIBUTOR
vuejs
core
718,734,729
1,356
xiaoxiangmoe
@znck Could you sharing us the reason why not using `h` in TS plugin. Thank you.
2020-10-29T12:57:01
2020-10-29T12:57:01
{}
CONTRIBUTOR
vuejs
core
719,137,928
2,515
unbyte
it seems the same as #2258
2020-10-30T02:50:10
2020-10-30T02:50:10
{}
CONTRIBUTOR
vuejs
core
719,299,105
2,522
xin-
![image](https://user-images.githubusercontent.com/9956861/97669224-991f3600-1abe-11eb-877e-15603345e689.png)  😁
2020-10-30T06:46:11
2020-10-30T06:46:11
{ "+1": 3, "-1": 2, "laugh": 1 }
NONE
vuejs
core
719,453,201
2,524
edison1105
The second problem is not fixed.
2020-10-30T09:47:50
2020-10-30T09:47:50
{}
MEMBER
vuejs
core
719,600,179
2,526
boussadjra
> ``` > <Child @EnlargeText="onEnlargeText" /> > ``` > > works Yes it works but the linter raises a warning
2020-10-30T14:54:02
2020-10-30T14:54:02
{}
NONE
vuejs
core
719,803,100
2,532
yyx990803
@knightly-bot build this
2020-10-30T21:15:17
2020-10-30T21:15:17
{}
MEMBER
vuejs
core
719,874,689
2,533
vue-bot
Hello, thank you for taking time filling this issue! However, we kindly ask you to use our [Issue Helper](https://new-issue.vuejs.org/?repo=vuejs/vue-next) when creating new issues, in order to ensure every issue provides the necessary information for us to investigate. This explains why your issue has been automatic...
2020-10-31T03:07:32
2020-10-31T03:07:32
{}
CONTRIBUTOR
vuejs
core
719,928,131
2,531
skirtles-code
For the benefit of anyone else reading this, there is a corresponding Stack Overflow question here: https://stackoverflow.com/questions/64615373/how-to-make-transition-work-with-visibility-but-not-display I believe this is really a feature request rather than a bug report. Currently it is possible to hide an elem...
2020-10-31T12:36:56
2020-10-31T12:36:56
{}
CONTRIBUTOR
vuejs
core
720,977,944
2,547
edison1105
what's your expected???
2020-11-03T08:37:52
2020-11-03T08:37:52
{}
MEMBER
vuejs
core
721,535,366
2,554
github-actions[bot]
## Size report | Path | Size | | -------------------------- | ------------- | | vue.global.prod.js | 40.15 KB (0%) | | runtime-dom.global.prod.js | 26.43 KB (0%) | | size-check.global.prod.js | 15.95 KB (0%) |
2020-11-04T06:20:23
2020-11-04T06:20:23
{}
NONE
vuejs
core
718,663,116
1,356
znck
Now, I'm not using `h` in TS plugin but I'll confirm if this affects JSX or not.
2020-10-29T11:03:34
2020-10-29T11:03:34
{}
MEMBER
vuejs
core
718,815,764
2,518
github-actions[bot]
## Size report | Path | Size | | -------------------------- | ------------- | | vue.global.prod.js | 40.15 KB (0%) | | runtime-dom.global.prod.js | 26.43 KB (0%) | | size-check.global.prod.js | 15.95 KB (0%) |
2020-10-29T15:07:18
2020-10-29T15:07:18
{}
NONE
vuejs
core
719,589,890
2,526
edison1105
see #2429
2020-10-30T14:36:45
2020-10-30T14:36:45
{}
MEMBER
vuejs
core
719,606,352
2,523
edison1105
最好是提供一个简单的线上demo,方便排查。
2020-10-30T15:03:57
2020-10-30T15:03:57
{}
MEMBER
vuejs
core
719,815,200
2,532
knightly-bot
<!--KNIGHTLY-BUILD-ENABLED--> [![Nightly Build](https://github.com/knightlyjs/knightly/blob/main/res/badge.svg?raw=true)](https://github.com/knightlyjs/knightly) 🌒 Knightly build enabled, release every night at 00:00 UTC <sup>(skip if no change)</sup> 📦 [npm package](https://www.npmjs.com/package/@knightly/vue/v/p...
2020-10-30T21:48:11
2020-10-30T21:48:11
{ "+1": 4, "eyes": 1, "heart": 1 }
NONE
vuejs
core
719,918,707
2,531
yaquawa
It's very easy to add a modifier like `v-show.visibility`, if it's OK to have such a modifier, I would like to send a PR.
2020-10-31T11:06:47
2020-10-31T11:06:47
{}
NONE
vuejs
core
721,024,943
2,546
LinusBorg
"_" is a reserved name, https://github.com/vuejs/vue-next/blob/a1eb1e59ecb5bf43d62950f68fec5115ba0a1d24/packages/runtime-core/src/componentPublicInstance.ts#L228-L231 But we don'T check for this when a globalProperty is assigned, as `globalProperties` is a simple object. to check for this reserved name, we wo...
2020-11-03T10:15:07
2020-11-03T10:15:07
{ "eyes": 1 }
MEMBER
vuejs
core
718,764,034
1,409
AlexandreBonaventure
@icehaunter @somodevo Sorry but it looks like your scenarios are a little bit different than mine, and can be dealt with current API. @LinusBorg I'm mostly using vite these days so `require` is a showstopper @znck Not sure to get what you mean. Tree-shaking will not happen if the module itself is not found, it wil...
2020-10-29T13:47:30
2020-10-29T13:47:30
{}
CONTRIBUTOR
vuejs
core
718,816,308
2,518
dependabot-preview[bot]
One of your CI runs failed on this pull request, so Dependabot won't merge it. - [ci/circleci: test](https://circleci.com/gh/vuejs/vue-next/10610?utm_campaign=vcs-integration-link&utm_medium=referral&utm_source=github-build-link) Dependabot will still automatically merge this pull request if you amend it and your tes...
2020-10-29T15:08:06
2020-10-29T15:08:06
{}
CONTRIBUTOR
vuejs
core
718,840,359
1,409
LinusBorg
@AlexandreBonaventure I think what @znck means is that you should make vue-router a dependency of your component library. Wether or not the project that consumes your library actually uses vue-router, you import it and use it's `useRoute` method - which means it's a dependency of your project. If the consuming proje...
2020-10-29T15:44:14
2020-10-29T15:47:45
{ "+1": 1 }
MEMBER
vuejs
core
719,515,619
2,524
LinusBorg
Yep. It seems we also need to pause Tracking in `doWatch`, not sure if we should just wrap the whole thing ...
2020-10-30T12:08:18
2020-10-30T12:08:18
{}
MEMBER
vuejs
core
720,928,545
2,545
github-actions[bot]
## Size report | Path | Size | | -------------------------- | ------------- | | vue.global.prod.js | 40.15 KB (0%) | | runtime-dom.global.prod.js | 26.43 KB (0%) | | size-check.global.prod.js | 15.95 KB (0%) |
2020-11-03T06:23:11
2020-11-03T06:23:11
{}
NONE
vuejs
core
720,946,869
2,540
shadowings-zy
> I found this reason and I don't know how to fix this.😆 I have two ideas. The first is to show an additional warning for in-DOM component. As you see, the event you emit in in-DOM template works not fine. That is because in-DOM template is case sensitive. The second is fix the `isEmitListener` function, lik...
2020-11-03T07:15:15
2020-11-03T07:16:18
{}
CONTRIBUTOR