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,280,173,168
6,851
oliverzy
This is technically a breaking change, I think the workaround above is not ideal
2022-10-17T02:08:09
2022-10-17T02:08:09
{}
NONE
vuejs
core
1,280,477,864
5,297
michael42
This also happens when rendering a component server-side using `@vue/server-renderer`. How can we get the warnings during SSR to fail the request or at least print them in the browser?
2022-10-17T08:25:57
2022-10-17T08:25:57
{ "+1": 1 }
NONE
vuejs
core
1,281,091,679
3,386
keysmashes
I ran into this trying to use `console.log()` inside a template. You get an absolutely bizarre-sounding error: ``` Uncaught TypeError: Cannot read properties of undefined (reading 'log') ``` Unless you think to disable sourcemap support, you have no idea that it's rewriting `console.log` to `_ctx.console.log`, ...
2022-10-17T15:52:27
2022-10-17T15:52:27
{}
NONE
vuejs
core
1,281,981,110
2,907
gquinteros93
Hi @andoniabedul , How did you figure out that the problem was Vuex? What did you do to solve the issue in that case? Thanks in advance
2022-10-18T08:08:03
2022-10-18T08:08:03
{}
NONE
vuejs
core
1,283,802,060
6,912
LinusBorg
* The Playground doesn't show Type information so it's not suited to reproduce the supposed issue. * The reproduction steps are not clear. * It's not clear when and by what the error is being raised - Volar in the IDE? running vue-tsc? Vue CLI? Please provide a fully runnable reproduction demonstrating the problem...
2022-10-19T10:44:49
2022-10-19T10:44:49
{}
MEMBER
vuejs
core
1,280,010,611
2,907
andoniabedul
I'm having exactly this problem, but in the server side... Once createSSRApp(App, fetchedData) for each request, it 's keeping me in memory the fetchedData. App.js ``` import { createSSRApp } from 'vue'; import App from '../src/App.vue'; import PageStore from '../src/store/Brands.js'; import CommonStore from '...
2022-10-16T17:06:43
2022-10-16T17:06:43
{}
NONE
vuejs
core
1,279,267,829
6,855
acidjazz
why has this been sitting for 2 days? it's chaos for volar
2022-10-14T17:15:49
2022-10-18T09:46:16
{ "+1": 8 }
NONE
vuejs
core
1,282,691,980
6,677
nicoszerman
I've spent about 10 hours trying to debug my code until I finally found this issue and learned that <script setup> and <script> shouldn't be mixed. I emphasize that this needs to be better documented.
2022-10-18T16:44:11
2022-10-18T16:44:11
{}
NONE
vuejs
core
1,284,387,531
6,914
LinusBorg
Issues require a reproduction.
2022-10-19T18:05:27
2022-10-19T18:05:27
{ "heart": 1 }
MEMBER
vuejs
core
1,285,646,007
6,919
JayFate
@sxzz Do you have a minute to review this PR ?
2022-10-20T14:27:58
2022-10-20T14:27:58
{ "eyes": 1 }
CONTRIBUTOR
vuejs
core
1,278,863,692
6,883
w1ndy
@sxzz Good catch, we may need a more complex fix for #6876
2022-10-14T11:11:21
2022-10-14T11:11:21
{}
NONE
vuejs
core
1,280,425,974
6,785
serialine
https://github.com/vuejs/vue/commit/2f335b2f9d09b962f40e38740826d444e4fff073
2022-10-17T07:41:59
2022-10-17T07:41:59
{}
NONE
vuejs
core
1,280,803,935
6,895
LinusBorg
Please don't close it, it's still so a bug 😅
2022-10-17T12:46:46
2022-10-17T12:46:46
{}
MEMBER
vuejs
core
1,282,414,077
6,851
LinusBorg
I don't think labeling this as an important bug is warranted. it's essentially an edge case when using an API that's not even public, strictly speaking.
2022-10-18T13:45:54
2022-10-18T13:45:54
{}
MEMBER
vuejs
core
1,284,750,417
4,942
edison1105
@telion2 could you create a new issue with a minimal repro?
2022-10-20T00:55:46
2022-10-20T00:55:46
{}
MEMBER
vuejs
core
1,286,375,808
5,657
heibaikn
I also had this issue only in prod mode at vue@3.2.14, and I fix by abstracted into components before ``` <template> <div> //..... <div v-if="isShow" class="section"> </div> //..... </div> </template> ``` after ``` <template> <div> //..... <components :is-show="isShow"></c...
2022-10-21T02:27:04
2022-10-21T02:32:22
{ "+1": 1 }
NONE
vuejs
core
1,286,619,489
6,918
LinusBorg
About 1: I think ìnheritAttrs: false is allowing for what you want, pretty much. All you would maybe need to do is filter any properties starting with `on[A-Z]` from `$attrs` and you have an object that contains only parent attributes, not parent listeners. About 2: Seems like the implementation of that `<dragg...
2022-10-21T08:13:14
2022-10-21T08:13:14
{}
MEMBER
vuejs
core
1,287,459,510
4,745
mrozekma
It doesn't look like there's currently a way to disable the warning, although @serialine opened #6785 about it. In the meantime, one option is to use [patch-package](https://www.npmjs.com/package/patch-package) to comment out [the warning](https://github.com/vuejs/core/blob/6cb94752b0354117669de94f81c5195ec8c7f40c/p...
2022-10-21T21:35:51
2022-10-21T21:35:51
{}
NONE
vuejs
core
1,278,854,644
6,883
sxzz
@w1ndy It's a known issue I guess #6876, #6578. I think we should improve `defineProps` type of Reactivity Transform, instead of change the escape type.
2022-10-14T11:02:34
2022-10-14T11:03:43
{}
MEMBER
vuejs
core
1,285,355,215
6,917
LinusBorg
For reasons how Vue 3's virtualDOM works, Elements of a loop are wrapped in a Fragment. That's not a bug, it's how it works. You Will need to work with this. You can detect a Fragment like this: ```js import { Fragment } from 'vue' if (vnode.type === Fragment) { return vnode.children // those are the 3 divs ...
2022-10-20T11:21:25
2022-10-20T11:22:01
{}
MEMBER
vuejs
core
1,287,325,657
6,922
posva
Duplicate of https://github.com/vuejs/core/issues/6715
2022-10-21T18:50:46
2022-10-21T18:50:46
{}
MEMBER
vuejs
core
1,280,015,974
6,892
imrim12
@LinusBorg thank you for the fast reply, but should this be specified in the **docs**? I find it shows the error when I use the assign operator (=) in Typescript, which is very noticeable and correct But for `splice` and `push`, it just works, for me thanks to your reply i know that i should wrap it in `readonly()` o...
2022-10-16T17:32:02
2022-10-16T17:32:02
{}
NONE
vuejs
core
1,280,371,550
6,851
zhangzhonghe
duplicate of #815 This is not a breaking change!
2022-10-17T06:49:03
2022-10-17T06:49:03
{}
MEMBER
vuejs
core
1,280,753,071
6,896
zhangzhonghe
duplicate of https://github.com/vuejs/core/issues/6852
2022-10-17T12:06:04
2022-10-17T12:06:04
{ "+1": 1 }
MEMBER
vuejs
core
1,282,934,724
6,909
mrkprdo
Not sure why stackblitz is not showing the code... :/ ``` <template> <img ref="myImg" src="" width="200" height="200" /> </template> <script> import { ref, onMounted, onBeforeUnmount } from 'vue'; export default { name: 'ImgStrm', setup() { const stream = ref(null); onMounted(() => { ...
2022-10-18T20:00:32
2022-10-18T20:00:32
{}
NONE
vuejs
core
1,283,352,424
6,910
alamhubb
Can you provide an emit() function that can be used directly, similar to this.$emit() of vue2
2022-10-19T03:10:18
2022-10-19T03:10:18
{}
NONE
vuejs
core
1,216,328,755
6,448
Shinigami92
Yeah I know, literally the first sentence in the PR description says that 😅 There is already another PR to solve the issue you are trying to explain But this is not my issue and it seems like it doesn't get priority So I opened this one to give at least a fix for my case I do not use objects and I don't want to ...
2022-08-16T08:46:21
2022-10-20T06:29:36
{}
CONTRIBUTOR
vuejs
core
1,289,205,505
6,938
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://chat.vuejs.org/) or [StackOverflow](http://stackoverflow.com/tags/vue.js).
2022-10-24T15:24:03
2022-10-24T15:24:03
{}
MEMBER
vuejs
core
1,290,124,758
6,947
netlify[bot]
### <span aria-hidden="true">❌</span> Deploy Preview for *vuejs-coverage* failed. | Name | Link | |---------------------------------|------------------------| |<span aria-hidden="true">🔨</span> Latest commit | 39caf043011e65cdae1f5fecfad82cd03a65fb66 | |<span aria-hidden="true">🔍</span> Latest deploy log | https:/...
2022-10-25T07:39:57
2022-10-25T07:39:57
{}
NONE
vuejs
core
1,280,788,237
6,895
LinusBorg
I did a PR for that already months ago. Seems ro have been drowned out a bit. #6182 So this issue is a duplicate, but the original issue seems to have been closed by the author. So we'll leave this one.
2022-10-17T12:34:28
2022-10-17T12:37:41
{ "laugh": 2 }
MEMBER
vuejs
core
1,280,793,698
6,895
LinusBorg
i think a workaround was to define an empty props object in the component? Not sure, can't test right now
2022-10-17T12:38:52
2022-10-17T12:38:52
{}
MEMBER
vuejs
core
1,280,993,763
6,899
Jack-Works
Also opened an issue in DT repo https://github.com/DefinitelyTyped/DefinitelyTyped/discussions/62759
2022-10-17T14:53:03
2022-10-17T14:53:03
{}
NONE
vuejs
core
1,282,784,896
4,002
walmon
Same here with: ``` "vue": "^3.2.41", "vue-router": "^4.1.5", ``` I'm facing it everywhere, some places I've found it's related to watching `route` when it hasn't changed and some kind of run condition. I boiled down the issue to this line which could simply have a conditional to prevent breaking and maybe ...
2022-10-18T17:49:46
2022-10-18T17:49:46
{ "+1": 1 }
NONE
vuejs
core
1,283,864,398
2,819
barayuda
same Issue here: ![image](https://user-images.githubusercontent.com/520463/196679377-b0d08fef-541f-4f73-93b9-57d9b51bac9d.png) anyone have face same issue? Version: Vue 3.2.40
2022-10-19T11:33:10
2022-10-19T11:33:33
{ "+1": 6 }
NONE
vuejs
core
1,284,481,524
6,155
zylstraj
Is there plans to ever get this merged in to fix the hydration errors? @KaelWD
2022-10-19T19:34:36
2022-10-19T19:34:36
{ "+1": 1 }
NONE
vuejs
core
1,286,608,837
6,918
Kasheftin
Thanks a lot! You are correct - if `emits` option includes `change`, then the `@change` event does not leak to the grand parent. But a few questions still remain: 1. Since it worked differently in vue2, would not it be reasonable to implement a configurable setting defining if the non-specified event should pass th...
2022-10-21T08:03:03
2022-10-21T08:11:58
{}
NONE
vuejs
core
1,288,165,586
4,294
sxzz
WIP by [Vue Macros](https://github.com/sxzz/unplugin-vue-macros/pull/126) <img width="1596" alt="image" src="https://user-images.githubusercontent.com/6481596/197407879-391fcac5-091c-4d51-bf22-2b2779c8d6b0.png"> --- I implemented resolving the referenced type of TypeScript powered by Babel. It could have diffe...
2022-10-23T18:01:22
2022-10-24T20:09:11
{ "+1": 10, "eyes": 7, "heart": 4 }
MEMBER
vuejs
core
1,290,227,985
6,938
Audie80
Hi, I don't understand, I think it's a feature resquest, because today v-model only works with input type="checkbox", and I think it should work with aria-roles.
2022-10-25T09:05:26
2022-10-25T09:05:26
{}
NONE
vuejs
core
1,311,609,843
7,101
cscsb
为什么说是符合预期的,别的网站都是可以正常显示的,但是这个网站不能正常显示,应该是个bug
2022-11-11T11:59:37
2022-11-11T11:59:37
{}
NONE
vuejs
core
1,312,518,480
7,115
amrsq
> I think your remote `lib.es.js` imports another `vue` from [unpkg.com](https://unpkg.com/vue@3/dist/vue.esm-browser.js), which results in conflict. i changed `importmap` to vue@3.2.41 ```html <script type="importmap"> { "imports": { "vue": "https://unpkg.com/vue@3.2.41/dist/vue.esm-...
2022-11-12T16:16:15
2022-11-12T16:16:15
{}
NONE
vuejs
core
1,312,888,832
7,112
sxzz
Never mind. I just thought of a better solution for the case of the static default value.
2022-11-14T00:38:02
2022-11-14T00:38:02
{}
MEMBER
vuejs
core
1,312,889,457
7,121
yyx990803
Are you sure this is reproducible with the latest version of Vue? The reproduction is working fine for me.
2022-11-14T00:39:12
2022-11-14T00:39:25
{}
MEMBER
vuejs
core
1,312,961,903
7,121
zhangzhonghe
> Are you sure this is reproducible with the latest version of Vue? The reproduction is working fine for me. I can reproduce it. It must be to change DemoA with DemoA displayed, then wait for hmr to finish before switching to DemoB.
2022-11-14T02:41:16
2022-11-14T02:41:16
{}
MEMBER
vuejs
core
1,107,815,509
4,294
WormGirl
Any news?
2022-04-24T10:51:51
2022-11-16T00:37:21
{ "+1": 5, "-1": 1 }
NONE
vuejs
core
1,311,303,007
5,687
yyx990803
This is expected behavior. When you use `.xx` shorthand or the `.prop` modifier, the key will be used as-is without any modification. You are expressing the intention to set the prop as a DOM property with the exact key. If you are using it in DOM templates, `.camel` modifier will be needed.
2022-11-11T07:00:50
2022-11-11T07:00:50
{}
MEMBER
vuejs
core
1,311,436,599
4,695
yyx990803
This PR unfortunately isn't the right fix. The original issue is Vue custom elements importing normal Vue components. The latter will **not** have the `styles` option defined. Also with `<script setup>` not all components will be declared via the `components` option.
2022-11-11T09:19:22
2022-11-11T09:19:22
{}
MEMBER
vuejs
core
1,312,449,765
3,842
tayursky
Pug does not work with vite... Great...
2022-11-12T10:33:42
2022-11-12T10:33:42
{ "-1": 1 }
NONE
vuejs
core
1,313,059,675
7,126
netlify[bot]
### <span aria-hidden="true">❌</span> Deploy Preview for *vuejs-coverage* failed. | Name | Link | |---------------------------------|------------------------| |<span aria-hidden="true">🔨</span> Latest commit | 827263687dd6670f56a18fb58c86365822cf3990 | |<span aria-hidden="true">🔍</span> Latest deploy log | https:/...
2022-11-14T03:57:58
2022-11-14T03:57:58
{}
NONE
vuejs
core
1,313,210,327
7,129
sxzz
Which version do you mean will work?
2022-11-14T07:28:54
2022-11-14T07:28:54
{}
MEMBER
vuejs
core
1,314,854,331
4,294
velly
> [I wrote a vite plugin that implements the basic import interface for defineProps 实现了defineProps的基本接口导入](https://github.com/vuejs/core/discussions/7005) The solution has limitation if the interface has inheritance. E.G., The common interface in common folder interface ColorOption { color:string } -- Menu ...
2022-11-15T06:53:25
2022-11-15T06:53:25
{}
NONE
vuejs
core
1,315,461,544
4,309
larserikfinholt
Are there a workaround for this? Some indication of where this is going would be nice. A simple "not in the near future", "or not possible in v3" is fine. A long running open issue like this is a bit difficult when taking decitions.
2022-11-15T15:19:15
2022-11-15T15:19:15
{}
NONE
vuejs
core
1,311,629,996
7,102
zhangzhonghe
这是因为网站会根据不同的屏幕宽度显示不同的内容,以保证更好的阅读体验。你可以用搜索引擎搜索```响应式布局```就能清楚了。
2022-11-11T12:19:16
2022-11-11T12:19:16
{}
MEMBER
vuejs
core
1,312,444,441
5,584
zengshenggit
Oh, so that how it is.
2022-11-12T10:05:09
2022-11-12T10:05:09
{ "+1": 2 }
NONE
vuejs
core
1,312,526,212
7,115
godxiaoji
Version-independent, two `vue` were imported, one local and one remote, and this error was thrown by the second remote `vue`.
2022-11-12T16:54:02
2022-11-12T16:54:02
{ "+1": 1 }
CONTRIBUTOR
vuejs
core
1,313,513,940
6,409
yyx990803
This is out of date since the relevant test case has been removed.
2022-11-14T11:11:31
2022-11-14T11:11:31
{}
MEMBER
vuejs
core
1,314,982,420
6,435
mittci
@yyx990803
2022-11-15T08:49:56
2022-11-15T08:49:56
{}
NONE
vuejs
core
1,311,117,246
6,954
yyx990803
This fix doesn't seem to actually fix the case. The application will still be in a state where the previous component was unmounted and the next one not, so you get a renderer patching error on future updates.
2022-11-11T01:28:16
2022-11-11T01:28:16
{}
MEMBER
vuejs
core
1,309,891,948
7,083
netlify[bot]
### <span aria-hidden="true">❌</span> Deploy Preview for *vuejs-coverage* failed. | Name | Link | |---------------------------------|------------------------| |<span aria-hidden="true">🔨</span> Latest commit | f1f952768dce89018a0782ea65399452b5a32ccb | |<span aria-hidden="true">🔍</span> Latest deploy log | https:/...
2022-11-10T07:42:42
2022-11-11T03:01:13
{}
NONE
vuejs
core
1,311,748,938
7,103
LinusBorg
This is an intended change to solve dev/prod inconsistencies (https://github.com/vuejs/core/issues/6248), so we should try and see that we can keep it. I think test-utils could use `instance.setupState` instead?
2022-11-11T14:15:48
2022-11-11T14:49:41
{}
MEMBER
vuejs
core
1,312,393,207
6,988
zhangzhonghe
Thanks for the PR - But I don't think this is the right fix because it doesn't pass the test below: https://github.com/vuejs/core/blob/8a16da6550a43912a0707c83417ab8e1af2d45a1/packages/runtime-core/__tests__/hmr.spec.ts#L541-L567 see #7114 (waiting for review).
2022-11-12T07:01:51
2022-11-12T07:01:51
{}
MEMBER
vuejs
core
1,313,280,072
2,621
netlify[bot]
### <span aria-hidden="true">❌</span> Deploy Preview for *vuejs-coverage* failed. | Name | Link | |---------------------------------|------------------------| |<span aria-hidden="true">🔨</span> Latest commit | fe7a0a8a22249b0cea85f85ab20e44887e2281d8 | |<span aria-hidden="true">🔍</span> Latest deploy log | https:/...
2022-11-14T08:33:04
2022-11-14T08:59:52
{}
NONE
vuejs
core
1,311,369,651
7,097
yyx990803
#7096 already fixed via 89f37ceb62363c77697d177675790a9ab81ba34f
2022-11-11T08:13:16
2022-11-11T08:13:16
{}
MEMBER
vuejs
core
1,311,567,080
5,952
fabienbergerat
@stikoo agreed... For me this issue makes nuxt 3 pretty much pointless. It made me lose so much time trying to figure out the least ugly workarounds 🤯
2022-11-11T11:17:37
2022-11-11T11:17:37
{ "+1": 8 }
NONE
vuejs
core
1,311,641,421
7,102
cscsb
> 不知你说的「别的网站」指的是哪个网站。每个网站都有它自身的设计与考虑。目前是设计如此,而不是一个不符合预期的 bug。 可以到 vue 3 docs 仓库的 [discussions](https://github.com/vuejs/docs/discussions) 发新帖讨论 (in English please) 我的网龄有10年了,99.9%网站不会出现这种情况
2022-11-11T12:29:04
2022-11-11T12:29:04
{ "-1": 4 }
NONE
vuejs
core
1,311,765,273
7,103
cexbrayat
Thanks @LinusBorg I think `setupState` lacks `$`, `$options`, and others, which breaks other test cases.
2022-11-11T14:31:05
2022-11-11T14:31:05
{}
MEMBER
vuejs
core
1,312,329,872
7,085
netlify[bot]
### <span aria-hidden="true">❌</span> Deploy Preview for *vuejs-coverage* failed. | Name | Link | |---------------------------------|------------------------| |<span aria-hidden="true">🔨</span> Latest commit | 1d0ed513c8143539baa0e2faacdc580e8cfe8777 | |<span aria-hidden="true">🔍</span> Latest deploy log | https:/...
2022-11-12T02:47:43
2022-11-12T02:47:43
{}
NONE
vuejs
core
1,313,210,567
7,129
peakDragonCheung
3.0.5
2022-11-14T07:29:14
2022-11-14T07:29:14
{}
NONE
vuejs
core
1,308,817,111
4,476
dfreier
I think the use cases described by @gnuletik are very realistic. **EDIT, that actually works ⬇️** The offical [vue documentation](https://vuejs.org/guide/extras/web-components.html#building-custom-elements-with-vue) is a bit confusing in my opinon: > Vue-defined custom element won't be able to inject properti...
2022-11-09T14:06:21
2022-11-14T10:00:32
{ "+1": 2 }
NONE
vuejs
core
1,311,343,889
2,343
yyx990803
Closing as 3.2 has re-introduced the `.prop` modifier.
2022-11-11T07:43:16
2022-11-11T07:43:16
{}
MEMBER
vuejs
core
1,311,477,868
7,098
pk8848597
add: ``` //work in this case <script lang="ts"> setup() { // do something..... } </script> // not work <script lang="ts" setup> </script> ```
2022-11-11T09:54:41
2022-11-11T09:54:41
{}
NONE
vuejs
core
1,313,208,888
7,129
peakDragonCheung
> I think it's not a bug. For `input` element, we should use `@input` to handle the event. It was originally possible to use this writing method at the same time. Later, after upgrading the new version, I found that the function was not supported. Because it was not supported, I changed to the change of watch value. H...
2022-11-14T07:27:03
2022-11-14T07:27:03
{}
NONE
vuejs
core
1,313,354,723
2,621
yyx990803
I noticed this fix is not granular: i.e. it would trigger even when unrelated keys are added or deleted. More precise tracking can be achieved by returning an instrumented version of `hasOwnProperty` on reactive objects, as implemented in https://github.com/vuejs/core/commit/588bd44f036b79d7dee5d23661aa7244f70e6beb.
2022-11-14T09:19:12
2022-11-14T09:19:12
{}
MEMBER
vuejs
core
1,314,252,449
6,390
zhangzhonghe
> I'm encountering a similar issue. With this repo: https://github.com/jaytonic/helloworld > > 1. Just run npm install and npm run serve > 2. open the main page > 3. edit something, like the "Email" to something else. > > You can see the console recompiling, but the content stay the same. If I refresh the page,...
2022-11-14T19:14:48
2022-11-14T19:14:48
{}
MEMBER
vuejs
core
1,315,259,861
4,294
liulinboyi
> > [I wrote a vite plugin that implements the basic import interface for defineProps 实现了defineProps的基本接口导入](https://github.com/vuejs/core/discussions/7005) > > The solution has limitation if the interface has inheritance. E.G., The common interface in common folder interface ColorOption { color:string } > > -- M...
2022-11-15T12:44:32
2022-11-15T12:44:32
{}
MEMBER
vuejs
core
1,151,048,599
4,294
lzr900515
when will it be supported ??😂
2022-06-09T12:17:39
2022-11-16T00:52:44
{ "-1": 12 }
NONE
vuejs
core
1,311,127,428
7,083
yyx990803
Notes: - [TS docs on per-file JSX factory (which also affects JSX namespace lookup)](https://www.typescriptlang.org/tsconfig#jsxFactory) If we land this, to avoid disruption in userland we need to: - IDE: Volar needs to generate TSX with `/** @jsx h */ import { h } from "vue/jsx"` /cc @johnsoncodehk - `@vue/...
2022-11-11T01:49:33
2022-11-11T01:49:46
{ "+1": 2, "eyes": 1 }
MEMBER
vuejs
core
1,311,634,151
7,102
sxzz
如有其他疑问,请使用 discussion。不用重复提新 issue。
2022-11-11T12:23:06
2022-11-11T12:23:06
{}
MEMBER
vuejs
core
1,311,803,598
7,102
Justineo
不管怎样,这都不是 [vuejs/core](https://github.com/vuejs/core/) 的 bug。如果对文档站点设计有疑问,请在 [vuejs/docs](https://github.com/vuejs/docs/) 项目发起讨论。
2022-11-11T15:09:55
2022-11-11T15:09:55
{ "+1": 3 }
MEMBER
vuejs
core
1,312,928,212
7,121
zhulh-dev
> Are you sure this is reproducible with the latest version of Vue? The reproduction is working fine for me. https://user-images.githubusercontent.com/41950121/201557473-5fe1c201-d07c-4d03-ad60-21ca2e0265d0.mp4 Is there a problem with my node version?
2022-11-14T01:35:38
2022-11-14T01:35:38
{ "eyes": 1 }
NONE
vuejs
core
1,313,228,293
6,993
netlify[bot]
### <span aria-hidden="true">❌</span> Deploy Preview for *vue-sfc-playground* failed. | Name | Link | |---------------------------------|------------------------| |<span aria-hidden="true">🔨</span> Latest commit | c5ef3b6ba5fd3bba52a22dc2888a9ca976f8e1b4 | |<span aria-hidden="true">🔍</span> Latest deploy log | htt...
2022-11-14T07:50:51
2022-11-14T07:50:51
{}
NONE
vuejs
core
1,313,788,464
7,095
baiwusanyu-c
I'm not sure if it's a `vue` problem, but in the reproduction you provided I noticed that you used `vant`'s `Badge` component, and everything seems to work fine after removing it. Could it be a problem with the component library? In `nuxt` environment you can use the `<client-only>` component to temporarily circumvent ...
2022-11-14T14:21:39
2022-11-14T14:22:55
{}
MEMBER
vuejs
core
1,313,815,423
7,095
john-eos
Hi, vant's Badge is just a random example. We encountered this issue with our own components after moving them to our component library package. The error seems to occur with _any_ external component that uses a slot.
2022-11-14T14:24:56
2022-11-14T14:24:56
{}
NONE
vuejs
core
1,314,961,757
7,130
bmeurer
Updating to 3.2.45 seems to fix this. Thanks!
2022-11-15T08:29:51
2022-11-15T08:29:51
{}
NONE
vuejs
core
1,311,364,361
6,142
yyx990803
Native slots work fundamentally different from Vue slots (which are programmatic functions), it's impossible to get the behavior match 100% under the same API, and it will only be confusing if we try to expose them under the same API but with completely different behavior (it's also impossible to reflect this differenc...
2022-11-11T08:07:30
2022-11-11T08:07:30
{ "+1": 1 }
MEMBER
vuejs
core
1,311,564,982
5,952
stikoo
Oh, this would solve soooooo many issues we're having with Nuxt 3 right now, please please give this the love it deserves! 🙏
2022-11-11T11:15:35
2022-11-11T11:15:35
{ "+1": 3 }
NONE
vuejs
core
1,311,636,542
7,102
cscsb
> 这是因为网站会根据不同的屏幕宽度显示不同的内容,以保证更好的阅读体验。你可以用搜索引擎搜索`响应式布局`就能清楚了。 但既然显示不出来,肯定是不好的阅读体验啊,别的网站都能正常显示,说明这是一个bug啊
2022-11-11T12:24:51
2022-11-11T12:24:51
{}
NONE
vuejs
core
1,312,284,786
7,103
yyx990803
Closing as intended - it's important to keep the prod/dev behavior consistent for normal users, and it only affects dev behavior, so this change is considered a fix.
2022-11-12T00:29:06
2022-11-12T00:29:06
{}
MEMBER
vuejs
core
1,312,598,202
4,397
54mu3l
I still got the same error with Vue Language Features (Volar) v1.0.9. My component looks like this: ```ts function myExposedMethod() { console.log("test"); } defineExpose({ myExposedMethod, }); ``` and I have a ref in the parent component like this: ```ts const myCompRef = ref<InstanceType<typeof ...
2022-11-12T23:48:57
2022-11-13T01:21:26
{}
NONE
vuejs
core
1,312,699,068
5,830
alperkay
This problem still seems to exist. Any news on how to solve this?
2022-11-13T10:42:09
2022-11-13T10:42:09
{}
NONE
vuejs
core
1,313,174,004
7,037
yyx990803
Actually, the comment is right and the implementation is wrong. `typeof` *should* be allowed in expressions.
2022-11-14T06:49:59
2022-11-14T06:49:59
{}
MEMBER
vuejs
core
1,313,487,642
6,998
yyx990803
This seems unncessary.
2022-11-14T11:00:57
2022-11-14T11:00:57
{}
MEMBER
vuejs
core
1,313,519,390
6,126
yyx990803
See f0645a9b Considering some users may not have read the contribution guide, using `pnpm` is less confusing here.
2022-11-14T11:15:16
2022-11-14T11:15:16
{}
MEMBER
vuejs
core
1,312,394,175
6,595
TKDev7
@yyx990803 friendly ping for review
2022-11-12T07:06:30
2022-11-12T07:06:30
{}
NONE
vuejs
core
1,312,881,523
7,112
sxzz
Wait a moment @yyx990803
2022-11-14T00:32:38
2022-11-14T00:32:38
{}
MEMBER
vuejs
core
1,313,204,798
7,129
sxzz
I think it's not a bug. For `input` element, we should use `@input` to handle the event. Even if there's no `v-model`, `@update:modalValue` also doesn't work for input element.
2022-11-14T07:21:54
2022-11-14T07:23:15
{}
MEMBER
vuejs
core
1,311,767,910
7,103
LinusBorg
You would have to mimick what the component proxy itself does to an extend: i.e. check the setup state for the accessed key first, and if that fails, try the proxy (for all those public APIs)
2022-11-11T14:33:44
2022-11-11T14:33:44
{}
MEMBER
vuejs
core
1,311,780,923
7,103
LinusBorg
I do something similar here: https://github.com/LinusBorg/vue-mixable/blob/main/src/vmContextProxy.ts
2022-11-11T14:47:17
2022-11-11T14:49:32
{}
MEMBER
vuejs
core
1,313,060,443
7,126
zhangzhonghe
I don't know why the test failed. My local is ok.
2022-11-14T04:00:03
2022-11-14T04:00:03
{}
MEMBER
vuejs
core
1,311,573,904
7,101
zhangzhonghe
这是符合预期的。
2022-11-11T11:23:38
2022-11-11T11:23:38
{}
MEMBER
vuejs
core
1,312,888,040
7,112
yyx990803
😅 didn't see it when I hit the merge button
2022-11-14T00:36:31
2022-11-14T00:36:31
{}
MEMBER