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,169,425,339 | 6,196 | edison1105 | duplicated of https://github.com/vuejs/core/issues/4294 | 2022-06-29T00:58:03 | 2022-06-29T00:58:03 | {} | MEMBER |
vuejs | core | 1,169,641,623 | 6,080 | zaqvil | I have the same problem. | 2022-06-29T07:40:51 | 2022-06-29T07:40:51 | {} | NONE |
vuejs | core | 1,169,762,311 | 6,198 | xiaozhangclassmater | ~~~js
watch(()=>cloneDeep(obj),(newvalue,odlvalue)=>{
console.log(newvalue,odlvalue);
},{deep:true})
~~~
Oh, I see, thank you. This problem has been solved,I am glad to communicate with you this time, and I have learned a lot of knowledge
| 2022-06-29T09:38:50 | 2022-06-29T09:38:50 | {} | NONE |
vuejs | core | 1,169,892,959 | 6,197 | LinusBorg | I see your point. It could be a worthwhile enhancement, but I'd be worried that it might break existing code in userland now, as it's not guaranteed that the typecasting people do now would be compatible with `HTMLElement | DefineComponent`. People might be doing this right now:
```ts
(this.$refs.myComponent as { t... | 2022-06-29T11:58:48 | 2022-06-29T12:07:29 | {} | MEMBER |
vuejs | core | 1,172,863,334 | 6,215 | netlify[bot] | ### <span aria-hidden="true">❌</span> Deploy Preview for *vuejs-coverage* failed.
| Name | Link |
|---------------------------------|------------------------|
|<span aria-hidden="true">🔨</span> Latest commit | 8dcdb400e2384d9e41bc5883f3bf52b866e8ff08 |
|<span aria-hidden="true">🔍</span> Latest deploy log | https:/... | 2022-07-02T08:49:37 | 2022-07-02T08:49:37 | {} | NONE |
vuejs | core | 1,167,311,220 | 6,144 | AmirmohammadBeheshti | I have same problem :( | 2022-06-27T12:48:38 | 2022-06-27T12:48:38 | {} | NONE |
vuejs | core | 1,170,069,651 | 6,194 | edison1105 | > @edison1105 we also have this export:
>
>
>
> ```
>
> export function inject<T>(
>
> key: InjectionKey<T> | string,
>
> defaultValue: T | (() => T),
>
> treatDefaultAsFactory: true
>
> ): T
>
> ```
>
> see https://github.com/vuejs/core/blob/8edf4b344179d0a8d3c1090ce63f466f4e787976/packages/runtime-cor... | 2022-06-29T14:40:18 | 2022-06-29T14:40:18 | {} | MEMBER |
vuejs | core | 1,171,021,519 | 5,670 | mattelen | How far away do you think this PR will be ready for review @javastation? I am quite keen to have this as I believe this will fix an issue I have | 2022-06-30T10:04:30 | 2022-06-30T10:04:30 | {
"+1": 4,
"heart": 2
} | NONE |
vuejs | core | 1,171,112,090 | 6,204 | jd-solanki | https://v3-migration.vuejs.org/breaking-changes/v-bind.html#_3-x-syntax | 2022-06-30T11:38:49 | 2022-06-30T11:38:49 | {} | NONE |
vuejs | core | 1,171,477,883 | 6,206 | LinusBorg | Your code is correct for Vue 3. But you are running it in Vue 2 compat mode. in Vue 2, v-model requires a `value` prop and emits an `input` event.
The error message is telling you how to disable Vue 2 compat for v-model as you are already using Vue 3 syntax.
```js
<template>
<div class="content-block">
... | 2022-06-30T17:13:18 | 2022-06-30T17:13:18 | {} | MEMBER |
vuejs | core | 1,171,902,026 | 6,211 | netlify[bot] | ### <span aria-hidden="true">❌</span> Deploy Preview for *vuejs-coverage* failed.
| Name | Link |
|---------------------------------|------------------------|
|<span aria-hidden="true">🔨</span> Latest commit | 37fe4ff0500c42af6782d02cb366285b7e4e1fb9 |
|<span aria-hidden="true">🔍</span> Latest deploy log | https:/... | 2022-07-01T03:51:23 | 2022-07-01T03:51:23 | {} | NONE |
vuejs | core | 1,165,824,697 | 6,158 | UcheAzubuko | Because the style was scoped, what happened is that the `extends` options allowed the reuse of template markup **only**. | 2022-06-24T18:23:38 | 2022-06-24T18:23:38 | {} | NONE |
vuejs | core | 1,167,158,452 | 6,180 | ddenev | Thanks for the reply @DanSweeney23 ! I do not agree though ;)
> I don't think you can really expect it to keep the same keys. You are deleting the vnodes with that v-if and creating new ones
On the contrary, I would expect exactly "to keep the same keys", exactly because I am providing keys for those vnodes and t... | 2022-06-27T10:10:53 | 2022-06-27T10:10:53 | {} | NONE |
vuejs | core | 1,169,255,632 | 6,197 | yesennes | Yes, but would better inform the user what is going in in the situation. If I see "Property 'innerText' does not exist on type 'DefineComponent | HTMLElement': Property 'innerText' does not exist on type 'DefineComponent'." I'll immediate realize what the problem is and what I need to cast too.
"Object is of type 'u... | 2022-06-28T21:22:12 | 2022-06-28T21:22:12 | {} | NONE |
vuejs | core | 1,171,950,263 | 6,209 | LinusBorg | It would make it much easier for us if you could just provide the repository to clone instead of providing instructions how to create a project for the reproduction from scratch. That also eliminates any change of us creating different circumstances that you had when you reproduced it.
Could you do that? thanks. | 2022-07-01T05:26:29 | 2022-07-01T05:26:29 | {} | MEMBER |
vuejs | core | 1,171,975,345 | 6,212 | netlify[bot] | ### <span aria-hidden="true">❌</span> Deploy Preview for *vuejs-coverage* failed.
| Name | Link |
|---------------------------------|------------------------|
|<span aria-hidden="true">🔨</span> Latest commit | ec3e6fe2a993462940c78bc2fdfb840b72785770 |
|<span aria-hidden="true">🔍</span> Latest deploy log | https:/... | 2022-07-01T06:10:51 | 2022-07-01T06:10:51 | {} | NONE |
vuejs | core | 1,173,559,226 | 6,223 | LinusBorg | please provide a reproduction link | 2022-07-04T09:08:45 | 2022-07-04T09:08:45 | {} | MEMBER |
vuejs | core | 1,173,609,529 | 6,221 | baiwusanyu-c | 分析了一下
````
export function guardReactiveProps(props: (Data & VNodeProps) | null) {
if (!props) return null
return isProxy(props) || InternalObjectKey in props
? extend({}, props)
: props
}
````
似乎是这里的浅拷贝导致当你修改witdh,dynamicChildren中的旧props也改变了,这样在patchProps时就没有重新渲染
It seems that the shallow copy he... | 2022-07-04T09:55:00 | 2022-07-04T09:55:00 | {} | MEMBER |
vuejs | core | 1,165,416,281 | 6,175 | LinusBorg | https://dev.to/linusborg/vue-when-a-computed-property-can-be-the-wrong-tool-195j | 2022-06-24T10:03:31 | 2022-06-24T10:03:31 | {} | MEMBER |
vuejs | core | 1,167,735,001 | 4,339 | marceloatg | This feature is the only thing keeping me from migrating to vue 3, looking forward to this feature. | 2022-06-27T18:37:25 | 2022-06-27T18:37:25 | {} | NONE |
vuejs | core | 1,171,203,395 | 6,204 | LinusBorg | https://v3-migration.vuejs.org/breaking-changes/v-on-native-modifier-removed.html | 2022-06-30T13:13:00 | 2022-06-30T13:13:00 | {
"+1": 1
} | MEMBER |
vuejs | core | 1,171,479,499 | 6,205 | LinusBorg | Please add the steps necessary to demonstrate the issue in the linked stackblitz project. | 2022-06-30T17:15:01 | 2022-06-30T17:15:01 | {} | MEMBER |
vuejs | core | 1,171,947,810 | 6,210 | LinusBorg | Hi,
your example is not runnable. If you can't achieve a runnable example on the SFC Playground, use Stackblitz, codesandbox or provide a Github repository with the minimal runnable production. | 2022-07-01T05:21:21 | 2022-07-01T05:21:21 | {} | MEMBER |
vuejs | core | 1,172,329,938 | 3,842 | Venegrad | How to fix that, i have same error today. Its complete project, what working 2 years, nad that problems goin only today in 1765 files, wow. How i can ifx that? | 2022-07-01T13:08:34 | 2022-07-01T13:08:34 | {} | NONE |
vuejs | core | 1,172,577,139 | 6,209 | aphex | @LinusBorg Yup that's the one. I didn't realize I needed both SFC and repo. Doesn't matter now though you got them all :).
If you need me to put together anything else just let me know.
I know this is a bit of a rare situation as I suspect most people would never really see this as they are not adding and removi... | 2022-07-01T17:44:37 | 2022-07-01T17:44:37 | {} | NONE |
vuejs | core | 1,172,864,171 | 6,215 | netlify[bot] | ### <span aria-hidden="true">❌</span> Deploy Preview for *vuejs-coverage* failed.
| Name | Link |
|---------------------------------|------------------------|
|<span aria-hidden="true">🔨</span> Latest commit | 5054b85d4e2e311c46d6d93df5d217ebe50d15e8 |
|<span aria-hidden="true">🔍</span> Latest deploy log | https:/... | 2022-07-02T08:57:10 | 2022-07-02T08:57:10 | {} | NONE |
vuejs | core | 1,172,915,632 | 6,209 | aphex | @liulinboyi I don't know why I didn't do this in the first place, making assumptions again 🤦♂️
Thanks for taking the time to check into it. My results are looking fine when built. Not sure if you want to keep this open for dev mode, seems minor. I also tested this back to chromium 89 and saw the same results, so... | 2022-07-02T15:24:07 | 2022-07-02T15:24:07 | {} | NONE |
vuejs | core | 1,173,108,502 | 2,562 | matrunchyk | I'm looking for this to resolve as well.
> The two are _usually_ the same except when using a directive on a child component.
That's exactly exception I ran into. | 2022-07-03T15:09:18 | 2022-07-03T15:09:18 | {} | NONE |
vuejs | core | 1,173,306,446 | 6,220 | yyx990803 | I don't understand the request here. Your use case doesn't seem to require `provide` outside a component context.
FYI there's app-level provide: https://vuejs.org/api/application.html#app-provide | 2022-07-04T03:45:46 | 2022-07-04T03:45:46 | {} | MEMBER |
vuejs | core | 1,166,259,186 | 5,328 | LinusBorg | Converted to draft so it doesn't get merged as of now. This should be merged after a lot of other smaller fixes have been added, at which point this PR here will require some adjustments for the expected merge conflicts. | 2022-06-25T11:11:44 | 2022-06-25T11:11:44 | {} | MEMBER |
vuejs | core | 1,170,767,940 | 6,194 | NataliaTepluhina | @LinusBorg I've seen cases when people use a factory function returning an array or object for a default value, just like they do it for the default prop value. I am not sure whether they need it to be a factory function but it aligns logically with props default so I can see where this comes from.
@yyx990803 it wou... | 2022-06-30T05:06:04 | 2022-06-30T05:06:04 | {} | MEMBER |
vuejs | core | 1,172,857,213 | 6,209 | liulinboyi | Please after `npm run build` test again, thanks!

| 2022-07-02T08:01:27 | 2022-07-02T08:22:50 | {} | MEMBER |
vuejs | core | 1,173,306,904 | 6,221 | binghc | 再看一个有意思的问题, 给div加了一个@click就变成响应式了,请看代码(点击button 点击div3 div1和div3都有响应式,div2依然没有)
https://sfc.vuejs.org/#eNp9kk1u2zAQha8yIAo4QWMxbtGNKhvtPbiILI0lJhZJkCMlhaEL9BBF0UWXPUCBHsf36OjPUeIkXEjk8M3HmUcexFfnoqZGEYuEsHL7lHCjDPBItjWRNfAl2+vsbq0EYSAlNsdfP47ffx7//Dv+/Z3IQTSl5LqBONC3PbI+s2ani6hfct4g6WXlarNKJH/HNMl5p1O9nNOa5Vab/EQ743x4... | 2022-07-04T03:46:45 | 2022-07-04T03:49:44 | {} | NONE |
vuejs | core | 1,171,308,297 | 2,015 | patforg | I've bundled @Fuzzyma solution in to a component:
TeleportWrapper.vue
```
<template>
<teleport :to="target" :disabled="!target || disabled">
<slot></slot>
</teleport>
</template>
<script>
import { ref } from 'vue'
export default {
props: {
to: {
type: String,
default... | 2022-06-30T14:42:20 | 2022-06-30T14:42:20 | {
"+1": 3,
"hooray": 1
} | NONE |
vuejs | core | 1,173,017,470 | 5,073 | mutolee | @LinusBorg 请问这个问题有处理进展吗,官方是否修复了这个问题? | 2022-07-03T05:54:22 | 2022-07-03T05:54:38 | {} | NONE |
vuejs | core | 1,173,094,835 | 6,214 | LinusBorg | This is expected. Its in general a very bad idea to use element selectors like this in scoped css. | 2022-07-03T13:54:40 | 2022-07-03T13:54:40 | {} | MEMBER |
vuejs | core | 1,173,299,641 | 6,221 | zhangmo8 | It may be that the direct `v-bind` deconstructs the `config`, resulting in the failure of the response. | 2022-07-04T03:31:25 | 2022-07-04T03:32:32 | {} | NONE |
vuejs | core | 1,173,453,555 | 6,166 | LinusBorg | Closing this issue for inactivity. If you an provide further information, and assuming my last comment doesn't explain the issue you are seeing, we can re-open it. | 2022-07-04T07:29:37 | 2022-07-04T07:29:37 | {} | MEMBER |
vuejs | core | 1,060,884,924 | 5,533 | posva | Hello, make sure to always provide a reproduction that follows the instructions at https://new-issue.vuejs.org/?repo=vuejs/vue-next#why-repro.
Open a new issue with a reproduction that follows those instructions if you manage to create a boiled-down reproduction or provide a failing test case at https://github.com/v... | 2022-03-07T16:33:05 | 2022-03-07T16:33:05 | {} | MEMBER |
vuejs | core | 1,061,855,701 | 4,339 | tony-gm | Here is a temporary solution I can share, hope can help somebody who also work on sort of "multi tab page" project.
1. Since keep-alive just a component, so we can get it's instance by set a ref
2. I went through keepAlive's source code, found that all the cached vnode keep in a map named __v_cache. Keep-alive inter... | 2022-03-08T14:47:21 | 2022-03-08T15:05:56 | {
"+1": 12
} | NONE |
vuejs | core | 1,062,739,722 | 5,550 | netlify[bot] | ✔️ Deploy Preview for *vue-next-template-explorer* ready!
🔨 Explore the source changes: 8067f05468fafab37b3c59dd992b0c3b1bd19334
🔍 Inspect the deploy log: [https://app.netlify.com/sites/vue-next-template-explorer/deploys/622877e75cb5d5000875f273](https://app.netlify.com/sites/vue-next-template-explorer/deploys/622... | 2022-03-09T09:48:28 | 2022-03-09T09:49:10 | {} | NONE |
vuejs | core | 1,063,890,928 | 5,560 | caozhong1996 | About custom caching strategy, it does many people need😔
#4339 #5105 | 2022-03-10T10:17:43 | 2022-03-10T10:17:43 | {
"+1": 1
} | CONTRIBUTOR |
vuejs | core | 1,061,273,139 | 4,403 | tony19 | Until #4873 is merged, a quick workaround is to convert the function property into an object.
For Vant's `Toast` plugin that sets up a global `$toast` property (as in the @Fiona-SUN's case here):
```js
app.use(Toast)
const toast = app.config.globalProperties.$toast
app.config.globalProperties.$toast = { ...... | 2022-03-08T00:15:47 | 2022-03-08T00:15:47 | {
"+1": 1
} | CONTRIBUTOR |
vuejs | core | 1,061,316,785 | 5,542 | netlify[bot] | ✔️ Deploy Preview for *vue-next-template-explorer* ready!
🔨 Explore the source changes: b418709e6fe0c8705ce179a3a3055b6b07a0fe11
🔍 Inspect the deploy log: [https://app.netlify.com/sites/vue-next-template-explorer/deploys/6226b51749f9440008f5efe3](https://app.netlify.com/sites/vue-next-template-explorer/deploys/622... | 2022-03-08T01:37:08 | 2022-03-08T01:45:45 | {} | NONE |
vuejs | core | 1,062,228,376 | 5,547 | sqal | You use the same ref object for the value and DOM element. Simply use a second ref object to grab the DOM element.
[Updated example](https://sfc.vuejs.org/#eyJBcHAudnVlIjoiPHNjcmlwdCBzZXR1cD5cbiAgaW1wb3J0IHsgb25Nb3VudGVkLCByZWYgfSBmcm9tICd2dWUnXG5cbiAgY29uc3QgdGl0bGUgPSByZWYoJycpXG4gIGNvbnN0IGVsID0gcmVmKCcnKVxuXG4gIG9... | 2022-03-08T21:26:44 | 2022-03-08T21:26:44 | {
"+1": 2
} | CONTRIBUTOR |
vuejs | core | 1,062,749,977 | 1,033 | Andarist | There is actually a way to make JSX namespace "local". It could be a namespace attached to the `h` factory, similarly to what I've done in Emotion:
https://github.com/emotion-js/emotion/blob/4266aa0183fe2c19904c25c6e803e8c534923865/packages/react/types/index.d.ts#L96-L114
I've explored this quite a bit and I'm also... | 2022-03-09T10:00:11 | 2022-03-09T10:00:11 | {
"+1": 7
} | NONE |
vuejs | core | 1,063,634,189 | 5,557 | edison1105 | is this same as https://github.com/vuejs/core/pull/5268 ?🤔 | 2022-03-10T03:48:31 | 2022-03-10T03:48:55 | {} | MEMBER |
vuejs | core | 1,060,157,991 | 5,532 | netlify[bot] | ✔️ Deploy Preview for *vue-sfc-playground* ready!
🔨 Explore the source changes: 5e7cab92e854b4fb4714d3d3f2137ee767d380f4
🔍 Inspect the deploy log: [https://app.netlify.com/sites/vue-sfc-playground/deploys/62297de0fb25a90008a7bb69](https://app.netlify.com/sites/vue-sfc-playground/deploys/62297de0fb25a90008a7bb69)
... | 2022-03-07T03:39:56 | 2022-03-10T04:28:13 | {} | NONE |
vuejs | core | 1,061,524,528 | 5,525 | ILikeCoder |
> I have the same problem too, and i can give another repro case [here](https://stackblitz.com/edit/template-refs-issue-k59z2w?file=src/App.vue), the `template refs` in devtools seems to be a different thing than the references given in `script setup`. I tried to use[ function refs](https://vuejs.org/guide/essent... | 2022-03-08T08:25:26 | 2022-03-08T08:25:26 | {} | NONE |
vuejs | core | 1,061,982,202 | 1,166 | nichoquet | Im not sure to understand why you say it can create complexity. Isn't the goal of this feature to be an alternative to document.getElementById and document.getElementByClassName without breaking the component logic (document.getElementById can access DOM on other components but ref cant)? Isn't `:ref="el => listElement... | 2022-03-08T16:45:46 | 2022-03-08T16:45:46 | {} | NONE |
vuejs | core | 1,062,669,546 | 5,525 | ZerroRt | Same problem :( , hope this bug is fixed soon. | 2022-03-09T08:26:40 | 2022-03-09T08:26:40 | {} | NONE |
vuejs | core | 1,062,712,406 | 5,548 | netlify[bot] | ✔️ Deploy Preview for *vuejs-coverage* ready!
🔨 Explore the source changes: e69d6e1d4500042f1f43aaa53d96738acdbfbc19
🔍 Inspect the deploy log: [https://app.netlify.com/sites/vuejs-coverage/deploys/62287044411281000870b4f1](https://app.netlify.com/sites/vuejs-coverage/deploys/62287044411281000870b4f1)
😎 Browse th... | 2022-03-09T09:17:08 | 2022-03-09T09:24:15 | {} | NONE |
vuejs | core | 1,063,654,154 | 5,558 | netlify[bot] | ✔️ Deploy Preview for *vue-next-template-explorer* ready!
🔨 Explore the source changes: be7a2194d81ceb409128f58b0bba3006d8b8562f
🔍 Inspect the deploy log: [https://app.netlify.com/sites/vue-next-template-explorer/deploys/62297ef2498b7d000843a64b](https://app.netlify.com/sites/vue-next-template-explorer/deploys/622... | 2022-03-10T04:30:46 | 2022-03-10T04:31:36 | {} | NONE |
vuejs | core | 1,060,282,164 | 4,873 | raind33 | > Done
published? which version? | 2022-03-07T07:47:51 | 2022-03-07T07:47:51 | {} | NONE |
vuejs | core | 1,060,745,059 | 5,536 | edison1105 | duplicate of https://github.com/vuejs/core/issues/5447 | 2022-03-07T14:26:49 | 2022-03-07T14:26:49 | {} | MEMBER |
vuejs | core | 1,060,775,324 | 5,443 | simqifeng | When will this bug be fixed, encountered the same problem | 2022-03-07T14:55:35 | 2022-03-07T14:55:35 | {} | NONE |
vuejs | core | 1,061,316,797 | 5,542 | netlify[bot] | ✔️ Deploy Preview for *vue-sfc-playground* ready!
🔨 Explore the source changes: b418709e6fe0c8705ce179a3a3055b6b07a0fe11
🔍 Inspect the deploy log: [https://app.netlify.com/sites/vue-sfc-playground/deploys/6226b517317813000738d5ce](https://app.netlify.com/sites/vue-sfc-playground/deploys/6226b517317813000738d5ce)
... | 2022-03-08T01:37:10 | 2022-03-08T01:47:35 | {} | NONE |
vuejs | core | 1,061,718,748 | 5,543 | LinusBorg | Hm, this seems to be related to the variable name you chose. `$props` is part of the Vue component API, and it seems it's somehow confusing Volar. Changing it to `const props` fixed the issues, changing it back made them reappear.
this issue should likely be moved to the Volar repo: https://github.com/johnsoncodehk/... | 2022-03-08T12:18:54 | 2022-03-08T12:19:50 | {
"heart": 1
} | MEMBER |
vuejs | core | 1,063,239,752 | 4,385 | weikinhuang | @Froxz that plugin requires that you use it's internal CSS framework | 2022-03-09T18:39:58 | 2022-03-09T18:39:58 | {
"+1": 1
} | NONE |
vuejs | core | 1,063,905,188 | 2,917 | jbmaisner | Hi there,
Any news on this issue ? I'm in the same situation, I need to use a getter for a globalPropertie but it seems there's no way to do that ?
| 2022-03-10T10:33:52 | 2022-03-10T10:33:52 | {
"+1": 1
} | NONE |
vuejs | core | 1,060,102,726 | 5,523 | ygj6 | I think this node is a single root node,https://github.com/vuejs/core/blob/5898629d723e82b68e9b17b91bf8b1a8390a3912/packages/runtime-core/src/componentRenderUtils.ts#L271-L292
And it behaves differently than the production mode. | 2022-03-07T01:34:31 | 2022-03-07T01:58:37 | {
"+1": 1
} | MEMBER |
vuejs | core | 1,061,226,333 | 5,539 | posva | Duplicate of https://github.com/vuejs/core/issues/4498 | 2022-03-07T22:59:00 | 2022-03-07T22:59:10 | {} | MEMBER |
vuejs | core | 1,064,029,990 | 5,562 | edison1105 | When you assign or destructure a reactive object's property to a local variable, the reactivity is "disconnected" because access to the local variable no longer triggers the get / set proxy traps. | 2022-03-10T13:00:00 | 2022-03-10T13:00:00 | {} | MEMBER |
vuejs | core | 1,064,313,485 | 5,565 | LinusBorg | Note: I noticed that there's a closed PR from @HcySunYang that basically does the same thing - can we just reopen that one? I would not mind. Not sure what the proper etiquette is for this case. | 2022-03-10T17:26:23 | 2022-03-10T17:26:23 | {} | MEMBER |
vuejs | core | 1,060,061,269 | 5,525 | D4RKAR117 | I have the same problem too, and i can give another repro case [here](https://stackblitz.com/edit/template-refs-issue-k59z2w?file=src/App.vue), the `template refs` in devtools seems to be a different thing than the references given in `script setup`. I tried to use[ function refs](https://vuejs.org/guide/essentials/tem... | 2022-03-06T23:21:18 | 2022-03-06T23:25:49 | {} | NONE |
vuejs | core | 1,060,680,028 | 5,521 | LinusBorg | Why would you only delete the effect from one dep, but not the others? | 2022-03-07T13:20:34 | 2022-03-07T13:20:34 | {} | MEMBER |
vuejs | core | 1,060,874,063 | 5,538 | LinusBorg | Well, ::v-deep() doesn't work like you want it to. it needs a selector as an argument. That's not a bug with less, it just doesn't support what you want it to. | 2022-03-07T16:22:32 | 2022-03-07T16:22:32 | {} | MEMBER |
vuejs | core | 1,061,251,221 | 5,540 | LinusBorg | Is there anything in the docs for defineCusromElement giving you the impression that they should be?
I don't think we planned for that, it's simply not supported. We don't expose anything about the component on the custom element wrapper except its props. | 2022-03-07T23:34:48 | 2022-03-07T23:35:04 | {} | MEMBER |
vuejs | core | 1,061,263,758 | 5,521 | sudongyuer | > So we can close this as it would break stuff.
sure,i think we need #5537 this test case,to make sure effect more robust🥰 | 2022-03-07T23:58:49 | 2022-03-07T23:58:49 | {} | CONTRIBUTOR |
vuejs | core | 1,061,585,189 | 5,544 | linpeng118 | ok
------------------ 原始邮件 ------------------
发件人: "vuejs/core" ***@***.***>;
发送时间: 2022年3月8日... | 2022-03-08T09:39:26 | 2022-03-08T09:39:26 | {} | NONE |
vuejs | core | 1,062,672,495 | 5,525 | ILikeCoder | @lidlanca Thank you very much for your method, as far as I am concerned, there is no problem now. good good | 2022-03-09T08:30:16 | 2022-03-09T08:30:16 | {} | NONE |
vuejs | core | 1,062,758,968 | 5,551 | ThomasBerne | This seems to be related to this issue: https://github.com/vuejs/core/issues/4294 | 2022-03-09T10:09:54 | 2022-03-09T10:09:54 | {} | NONE |
vuejs | core | 1,060,157,992 | 5,532 | netlify[bot] | ❌ Deploy Preview for *vuejs-coverage* failed.
🔨 Explore the source changes: 5e7cab92e854b4fb4714d3d3f2137ee767d380f4
🔍 Inspect the deploy log: [https://app.netlify.com/sites/vuejs-coverage/deploys/62297de02ddec200094ee0e1](https://app.netlify.com/sites/vuejs-coverage/deploys/62297de02ddec200094ee0e1)
| 2022-03-07T03:39:56 | 2022-03-10T04:28:11 | {} | NONE |
vuejs | core | 1,059,991,738 | 5,531 | sqal | `props['update:modelValue']` event name should be `onUpdate:modelValue` | 2022-03-06T16:16:40 | 2022-03-06T16:16:40 | {
"+1": 1
} | CONTRIBUTOR |
vuejs | core | 1,060,132,982 | 5,530 | edison1105 | > Look at #5517.
Oh~ I didnot see that one.😅 | 2022-03-07T02:45:49 | 2022-03-07T02:45:49 | {} | MEMBER |
vuejs | core | 1,060,262,634 | 5,525 | LinusBorg | duplicate of #5447 | 2022-03-07T07:16:49 | 2022-03-07T07:16:49 | {} | MEMBER |
vuejs | core | 1,060,553,352 | 5,535 | LinusBorg | You need to call `ctx.slots.default()` wihthin the render function so that dependencies can be properly collected.
[playground](https://sfc.vuejs.org/#eyJBcHAudnVlIjoiPHNjcmlwdCBzZXR1cD5cbmltcG9ydCB7IHJlZiB9IGZyb20gJ3Z1ZSdcblxuaW1wb3J0IFRyZWUgZnJvbSAnLi9UcmVlLnRzJ1xuXG5sZXQgcm9vdFZNb2RlbCA9IHJlZihbeyBuYW1lOiAnUjEnIH... | 2022-03-07T11:17:14 | 2022-03-07T11:17:49 | {
"heart": 1
} | MEMBER |
vuejs | core | 1,060,651,664 | 5,530 | iwusong | 你这个有一些问题

增加 ` && hasOwn(options, (camelizedKey = camelize(key)))` 的条件后 ,下面的
```
if (hasOwn(attrs, key)) {
if (value !== attrs[key]) {
attrs[key] = value
has... | 2022-03-07T12:48:02 | 2022-03-07T12:48:02 | {} | CONTRIBUTOR |
vuejs | core | 1,060,846,550 | 5,521 | sudongyuer | After adding the above test, my previous PR couldn't pass.
<img width="651" alt="image" src="https://user-images.githubusercontent.com/76603360/157070485-86e83505-0246-42d1-8ec6-3b78dc1c5c38.png">
| 2022-03-07T16:00:08 | 2022-03-07T16:00:08 | {} | CONTRIBUTOR |
vuejs | core | 1,060,841,974 | 5,537 | netlify[bot] | ✔️ Deploy Preview for *vuejs-coverage* ready!
🔨 Explore the source changes: 52c1332d1b65c311726276464b68c9285e30efb3
🔍 Inspect the deploy log: [https://app.netlify.com/sites/vuejs-coverage/deploys/62262b6efbff200008d5a792](https://app.netlify.com/sites/vuejs-coverage/deploys/62262b6efbff200008d5a792)
😎 Browse th... | 2022-03-07T15:57:40 | 2022-03-07T16:03:22 | {} | NONE |
vuejs | core | 1,064,116,831 | 5,564 | netlify[bot] | ✔️ Deploy Preview for *vue-next-template-explorer* ready!
🔨 Explore the source changes: 471add9465f159c39fac4587fb40f8275bc71677
🔍 Inspect the deploy log: [https://app.netlify.com/sites/vue-next-template-explorer/deploys/622a2433e3bab900087c470e](https://app.netlify.com/sites/vue-next-template-explorer/deploys/622... | 2022-03-10T14:23:04 | 2022-03-10T16:16:39 | {} | NONE |
vuejs | core | 1,064,115,586 | 5,564 | netlify[bot] | ✔️ Deploy Preview for *vuejs-coverage* ready!
🔨 Explore the source changes: 471add9465f159c39fac4587fb40f8275bc71677
🔍 Inspect the deploy log: [https://app.netlify.com/sites/vuejs-coverage/deploys/622a24337956b30008ffbb2f](https://app.netlify.com/sites/vuejs-coverage/deploys/622a24337956b30008ffbb2f)
😎 Browse th... | 2022-03-10T14:21:51 | 2022-03-10T16:21:12 | {} | NONE |
vuejs | core | 1,060,104,591 | 5,530 | ygj6 | Look at #5517. | 2022-03-07T01:39:11 | 2022-03-07T01:39:11 | {} | MEMBER |
vuejs | core | 1,061,602,137 | 5,544 | linpeng118 | 你好,关于核心库这边的回复很快,但是repl那边的回复太慢了,我看了最近的问题都没有被回复哦,希望你们能够转达一下哦,谢谢
------------------ 原始邮件 ------------------
发件人: "vuejs/core" ... | 2022-03-08T09:59:53 | 2022-03-08T09:59:53 | {} | NONE |
vuejs | core | 1,062,049,490 | 1,166 | LinusBorg | We actually changed our minds about his and reintroduced the old behavior quite recently.
Currently there still is a bug (#5447) but we will patch that ver soon.
So I'll close this old issue about this. | 2022-03-08T17:56:00 | 2022-03-08T17:56:00 | {} | MEMBER |
vuejs | core | 1,062,662,421 | 4,385 | SergkeiM | @weikinhuang I think you can get CSS by using this: [3rd party plugin for SSR](https://github.com/07akioni/css-render/tree/master/packages/vue3-ssr) | 2022-03-09T08:17:23 | 2022-03-09T08:17:23 | {} | NONE |
vuejs | core | 1,062,730,117 | 5,549 | netlify[bot] | ✔️ Deploy Preview for *vuejs-coverage* ready!
🔨 Explore the source changes: 8067f05468fafab37b3c59dd992b0c3b1bd19334
🔍 Inspect the deploy log: [https://app.netlify.com/sites/vuejs-coverage/deploys/6228752f12b93a000790fe2e](https://app.netlify.com/sites/vuejs-coverage/deploys/6228752f12b93a000790fe2e)
😎 Browse th... | 2022-03-09T09:36:59 | 2022-03-09T09:44:13 | {} | NONE |
vuejs | core | 1,060,874,501 | 5,521 | LinusBorg | So we can close this as it would break stuff. | 2022-03-07T16:22:59 | 2022-03-07T16:22:59 | {} | MEMBER |
vuejs | core | 1,061,559,990 | 5,525 | ILikeCoder | > @lidlanca我打开以进行进一步评估,但并没有真正看到与#5447的区别?#5447也只在 prod/playground 中工作,这是因为渲染函数内联。
Expect to get feedback on this problem, in the process of writing business code, stuck in this piece | 2022-03-08T09:10:08 | 2022-03-08T09:10:08 | {} | NONE |
vuejs | core | 1,062,903,628 | 5,553 | LinusBorg | Duplicate of #5525 | 2022-03-09T13:08:12 | 2022-03-09T13:08:12 | {} | MEMBER |
vuejs | core | 1,063,827,150 | 5,557 | ygj6 | > is this same as #5268 ?🤔
Not exactly, because components are not uninstalled in keepalive, but I believe there should be a similar problem in 5268. | 2022-03-10T09:08:23 | 2022-03-10T09:08:23 | {} | MEMBER |
vuejs | core | 1,062,730,013 | 5,549 | netlify[bot] | ✔️ Deploy Preview for *vue-next-template-explorer* ready!
🔨 Explore the source changes: 8067f05468fafab37b3c59dd992b0c3b1bd19334
🔍 Inspect the deploy log: [https://app.netlify.com/sites/vue-next-template-explorer/deploys/62287530e34f8000088bff45](https://app.netlify.com/sites/vue-next-template-explorer/deploys/622... | 2022-03-09T09:36:52 | 2022-03-09T09:37:39 | {} | NONE |
vuejs | core | 1,062,730,022 | 5,549 | netlify[bot] | ✔️ Deploy Preview for *vue-sfc-playground* ready!
🔨 Explore the source changes: 8067f05468fafab37b3c59dd992b0c3b1bd19334
🔍 Inspect the deploy log: [https://app.netlify.com/sites/vue-sfc-playground/deploys/622875303cd1bf0007324b05](https://app.netlify.com/sites/vue-sfc-playground/deploys/622875303cd1bf0007324b05)
... | 2022-03-09T09:36:53 | 2022-03-09T09:39:05 | {} | NONE |
vuejs | core | 1,063,622,517 | 1,850 | stevegiorgi | OK, so how should we give our elements a single root? It would be nice to have <></>, <Vue.fragment></Vue.frament>, or some sort of fragment we can use without wrapping everything in additional divs as this can lead to inaccessibility. | 2022-03-10T03:41:24 | 2022-03-10T03:43:50 | {} | NONE |
vuejs | core | 1,060,157,994 | 5,532 | netlify[bot] | ✔️ Deploy Preview for *vue-next-template-explorer* ready!
🔨 Explore the source changes: 5e7cab92e854b4fb4714d3d3f2137ee767d380f4
🔍 Inspect the deploy log: [https://app.netlify.com/sites/vue-next-template-explorer/deploys/62297de06eea290008fff6a5](https://app.netlify.com/sites/vue-next-template-explorer/deploys/622... | 2022-03-07T03:39:57 | 2022-03-10T04:26:58 | {} | NONE |
vuejs | core | 1,063,654,305 | 5,558 | netlify[bot] | ❌ Deploy Preview for *vuejs-coverage* failed.
🔨 Explore the source changes: be7a2194d81ceb409128f58b0bba3006d8b8562f
🔍 Inspect the deploy log: [https://app.netlify.com/sites/vuejs-coverage/deploys/62297ef270f7b2000872c038](https://app.netlify.com/sites/vuejs-coverage/deploys/62297ef270f7b2000872c038)
| 2022-03-10T04:31:07 | 2022-03-10T04:33:04 | {} | NONE |
vuejs | core | 1,064,036,620 | 5,562 | LinusBorg | You could use a computed property instead. | 2022-03-10T13:06:38 | 2022-03-10T13:06:38 | {} | MEMBER |
vuejs | core | 1,060,323,209 | 5,534 | LinusBorg | This is expected:
https://vuejs.org/api/sfc-script-setup.html#using-components | 2022-03-07T08:28:38 | 2022-03-07T08:28:38 | {} | MEMBER |
vuejs | core | 1,060,841,955 | 5,537 | netlify[bot] | ✔️ Deploy Preview for *vue-next-template-explorer* ready!
🔨 Explore the source changes: 52c1332d1b65c311726276464b68c9285e30efb3
🔍 Inspect the deploy log: [https://app.netlify.com/sites/vue-next-template-explorer/deploys/62262b6ebc04580008006c9e](https://app.netlify.com/sites/vue-next-template-explorer/deploys/622... | 2022-03-07T15:57:39 | 2022-03-07T15:58:26 | {} | NONE |
vuejs | core | 1,060,841,966 | 5,537 | netlify[bot] | ✔️ Deploy Preview for *vue-sfc-playground* ready!
🔨 Explore the source changes: 52c1332d1b65c311726276464b68c9285e30efb3
🔍 Inspect the deploy log: [https://app.netlify.com/sites/vue-sfc-playground/deploys/62262b6ec67fb40008c94ef9](https://app.netlify.com/sites/vue-sfc-playground/deploys/62262b6ec67fb40008c94ef9)
... | 2022-03-07T15:57:39 | 2022-03-07T15:59:49 | {} | NONE |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.