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,164,751,396 | 6,077 | nosfair-fma | yes, the workaround with the custom directive seems to work fine - thank you! :) | 2022-06-23T18:46:31 | 2022-06-23T18:46:31 | {} | NONE |
vuejs | core | 1,155,983,464 | 6,043 | williamChen26 | > [play](https://sfc.vuejs.org/#eyJBcHAudnVlIjoiPHRlbXBsYXRlPlxuICA8SGVsbG9Xb3JsZCAvPlxuPC90ZW1wbGF0ZT5cblxuPHNjcmlwdD5cbmltcG9ydCBIZWxsb1dvcmxkIGZyb20gJy4vSGVsbG9Xb3JsZC52dWUnXG5cbmV4cG9ydCBkZWZhdWx0IHtcbiAgbmFtZTogJ0FwcCcsXG4gIGNvbXBvbmVudHM6IHtcbiAgICBIZWxsb1dvcmxkXG4gIH1cbn1cbjwvc2NyaXB0PlxuXG48c3R5bGU+XG4jYXBwIHtc... | 2022-06-15T04:49:05 | 2022-06-15T04:49:05 | {} | NONE |
vuejs | core | 1,164,590,816 | 6,168 | LinusBorg | Here's why this is happening:
in `<script setup>`:
* the generated render function can pass the ref itself to the vnode, and
* when the ref's value is set, we read the current value in the process, thereby registering it as a reactive dependency.
in normal `setup()`:
* the generated rener function passes the ... | 2022-06-23T15:55:40 | 2022-06-23T15:55:40 | {
"+1": 2
} | MEMBER |
vuejs | core | 1,158,413,837 | 5,712 | zz541843 | > > I am version 3.2.33, encountered the same problem as you, and then I got the latest version number, 3.2.37, after the upgrade can be
>
> 两个中国人在这说英语,难为你了哈哈哈哈
兄弟,我还有个问题

我生成.d.ts文件的时候全红,咋解决 | 2022-06-17T02:22:33 | 2022-06-17T02:22:33 | {} | NONE |
vuejs | core | 1,159,210,709 | 6,134 | nros | Maybe I have not understood the intended concept of a writable computed. The documentation is not very clear about it. Its example uses non reactive storing of the data as well. What is the use case then? IMHO writing a value should resulting in reading the new value from the getter, which currently is not the case.
... | 2022-06-17T20:35:31 | 2022-06-17T20:35:31 | {} | NONE |
vuejs | core | 1,161,307,588 | 6,148 | LinusBorg | This is expected behaviour in Vue 3. When the transition component itself is being removed, Vue 3 will not run a transition for it and its contents.
It's technically this breaking change: https://v3-migration.vuejs.org/breaking-changes/transition-as-root.html#transition-as-root
Even though the migration guide sho... | 2022-06-21T06:11:57 | 2022-06-21T06:11:57 | {
"laugh": 1
} | MEMBER |
vuejs | core | 1,161,355,295 | 6,103 | LinusBorg | ```diff
import HelloWorld from './components/HelloWorld.vue';
import { render, h, onMounted, resolveComponent } from 'vue';
onMounted(() => {
- const vnode = h(resolveComponent('HelloWorld'));
+ const vnode = h(HelloWorld);
render(vnode, document.getElementById('wrapper'));
});
``` | 2022-06-21T07:18:31 | 2022-06-21T07:18:31 | {} | MEMBER |
vuejs | core | 1,161,650,440 | 5,775 | marcovdb | So, any update on this? | 2022-06-21T11:58:25 | 2022-06-21T11:58:25 | {} | NONE |
vuejs | core | 1,155,901,769 | 6,111 | Justineo | It will be a breaking change and it's easy enough to find a userland solution so I don't think we'll include this in core. | 2022-06-15T02:17:07 | 2022-06-15T02:17:07 | {} | MEMBER |
vuejs | core | 1,159,231,925 | 6,134 | nros | The work-around is to use `ref()` as a reactive storage for the value.
As there is a way forward and other objections to this change (see #3160), I'll close this PR.
However, I do not like that there is no guarantee that reading the value after setting a new value does deliver the new value. This is only the case w... | 2022-06-17T21:16:49 | 2022-06-17T21:16:49 | {} | NONE |
vuejs | core | 1,159,355,674 | 5,020 | calebwaldner | Just opened PR 👍🏼 https://github.com/vuejs/docs/pull/1783
| 2022-06-18T04:01:47 | 2022-06-18T04:01:47 | {} | NONE |
vuejs | core | 1,159,768,159 | 6,031 | wsafight | > I think the documentation should mention gotchas such as `v-if` not working on `template` elements and that `v-if` and `v-for` cannot be used together on the same element.
>
> I have not tried using a class or style to accomplish any of this.
>
> The behavior of undefined properties on an object being rendered ... | 2022-06-19T16:14:14 | 2022-06-19T16:14:14 | {
"+1": 1
} | NONE |
vuejs | core | 1,157,259,673 | 3,933 | lidlanca | another workaround
```html
<script>
// Skip timestamp check workaround.
// Code must be called before vue runtime is imported/evaluated.
/*
const ffMatch = navigator.userAgent.match(/firefox\/(\d+)/i);
skipTimestampCheck2 = !!(ffMatch && Number(ffMatch[1]) <= 53);
... | 2022-06-16T05:50:18 | 2022-06-20T03:50:25 | {} | CONTRIBUTOR |
vuejs | core | 1,161,851,906 | 6,151 | Ytiona | > 请先确保minimal reproduction能运行。
非常抱歉,已修复能运行了。
问题如 @liulinboyi 所反馈一致,修复结果也达到预期。
| 2022-06-21T14:50:52 | 2022-06-21T14:50:52 | {} | NONE |
vuejs | core | 1,162,986,353 | 6,131 | Arvkus | It's silent.
Custom element's constructor or any of the callbacks are not called. | 2022-06-22T11:34:39 | 2022-06-22T11:34:39 | {} | NONE |
vuejs | core | 1,165,141,352 | 6,170 | Simon-He95 | The reproduction link is broken... | 2022-06-24T02:55:21 | 2022-06-24T02:55:21 | {} | CONTRIBUTOR |
vuejs | core | 1,156,040,087 | 6,118 | liulinboyi | The test case `should allow nested effects`:
https://github.com/vuejs/core/blob/8a123ac34fd30fc36ac9e0c252dd345d6d7c7f50/packages/reactivity/__tests__/effect.spec.ts#L605-L636 | 2022-06-15T06:27:23 | 2022-06-15T06:27:23 | {} | MEMBER |
vuejs | core | 1,157,213,803 | 6,063 | snoozbuster | +1 on this. found a similar issue in my codebase. had to rewrite the affected code to not use v-else/-if. | 2022-06-16T04:17:44 | 2022-06-16T04:17:44 | {} | CONTRIBUTOR |
vuejs | core | 1,158,943,587 | 5,020 | calebwaldner | Nice, I'll put something together, thanks! | 2022-06-17T14:45:05 | 2022-06-17T14:45:05 | {} | NONE |
vuejs | core | 1,159,802,935 | 6,141 | LinusBorg | That's expected. The red will be set after the element has been created, but you pass it to the directive long *before* that happens, during the render phase. | 2022-06-19T20:08:48 | 2022-06-19T20:08:48 | {} | MEMBER |
vuejs | core | 1,162,819,744 | 6,161 | LinusBorg | I'd say thats another aspect of the currently documented restrictions:
> As of now, the type declaration argument must be one of the following to ensure correct static analysis:
>
> * A type literal
> * A reference to an interface or a type literal in the same file
https://vuejs.org/api/sfc-script-setup.html#t... | 2022-06-22T08:40:50 | 2022-06-22T08:41:35 | {
"+1": 1
} | MEMBER |
vuejs | core | 1,164,743,215 | 6,169 | liulinboyi | [Fix Preview](https://deploy-preview-6169--vue-sfc-playground.netlify.app/#__DEV__eyJBcHAudnVlIjoiPHNjcmlwdD5cbmltcG9ydCB7IHJlZiwgd2F0Y2hFZmZlY3QsIHdhdGNoLCB1bnJlZiwgZGVmaW5lQ29tcG9uZW50IH0gZnJvbSAndnVlJ1xuZXhwb3J0IGRlZmF1bHQgZGVmaW5lQ29tcG9uZW50KHtcbiAgc2V0dXAoKSB7XG4gICAgY29uc3QgY291bnQgPSByZWYoNSk7XG4gICAgY29uc3QgaW... | 2022-06-23T18:36:34 | 2022-06-23T18:36:34 | {} | MEMBER |
vuejs | core | 1,156,087,238 | 6,043 | iwusong | >
你是不是开 dev tools 了 | 2022-06-15T07:23:23 | 2022-06-16T02:44:20 | {} | CONTRIBUTOR |
vuejs | core | 1,158,401,918 | 5,712 | zz541843 | I am version 3.2.33, encountered the same problem as you, and then I got the latest version number, 3.2.37, after the upgrade can be | 2022-06-17T02:15:11 | 2022-06-17T02:15:11 | {} | NONE |
vuejs | core | 1,164,622,484 | 6,026 | amirkian007 | > https://staging-cn.vuejs.org/api/application.html#app-config-compileroptions
>
> comments need final rendering on dom
yeah comments should be rendered on the dom and the same problem exists for other built-in components too like Transition ,Suspense and etc . i dont know if it is a bug or not. but if it is, i t... | 2022-06-23T16:25:26 | 2022-06-23T16:25:26 | {} | NONE |
vuejs | core | 1,158,942,799 | 5,020 | LinusBorg | Sure, makes sense to me. | 2022-06-17T14:44:13 | 2022-06-17T14:44:13 | {} | MEMBER |
vuejs | core | 1,158,941,394 | 5,020 | calebwaldner | Hi, I recently had a problem with this and it took a while to hunt an answer down as to why this is happening.
Do you think a very brief comment in the docs is justified here?
I'm happy to open a PR with this sort of comment added if @LinusBorg is open to that.
I would probably put it right here in the [Dyna... | 2022-06-17T14:42:40 | 2022-06-17T14:44:26 | {} | NONE |
vuejs | core | 1,158,979,075 | 6,130 | nros | If you hit this issue you may mitigate it by tweaking your setter like this (`triggerRef` is exported by `vue`). The setter is executed with `this` set to the computed reference implementation. Of course, an arrow function would set a different `this`, so must not be used as a setter in this case.
```JavaScript
... | 2022-06-17T15:22:28 | 2022-06-17T15:22:28 | {} | NONE |
vuejs | core | 1,159,232,577 | 6,130 | LinusBorg | > Nevertheless I think you have missed the consequence of the current implementation, that the following fundamental concept of computer languages does not hold true anymore?
Even when using a plain getter and setter on a class, you *can* write the setter (or the getter) in a way that it doesn't indeed change the va... | 2022-06-17T21:17:56 | 2022-06-17T21:18:48 | {} | MEMBER |
vuejs | core | 1,161,586,244 | 6,153 | liulinboyi | [Issue Preview](https://sfc.vuejs.org/#__DEV__eyJBcHAudnVlIjoiPHNjcmlwdCBzZXR1cD5cbmltcG9ydCB7IHJlZiB9IGZyb20gJ3Z1ZSdcbmltcG9ydCBjcmVhdGUgZnJvbSAnLi9jcmVhdGUudHMnXG4gIFxuLy9pbXBvcnQgQ29tcFZOb2RlIGZyb20gJy4vQ29tcC52dWUnXG5jb25zdCBDb21wVk5vZGUgPSBjcmVhdGUoKVxuLy9kZWJ1Z2dlclxuIFxuY29uc3QgbXNnID0gcmVmKCdpbml0IG1zZycpXG5mdW... | 2022-06-21T10:55:09 | 2022-06-21T11:06:51 | {} | MEMBER |
vuejs | core | 1,162,713,298 | 6,159 | LinusBorg | This is a tricky one as the observed behavior is a compromise we consciously accecpted in order to get better perf in production while having proper updates during HMR in development:
* The compiler is aware that we dynamically generate a fresh array on every render in the template, but also, that it's a static valu... | 2022-06-22T06:47:59 | 2022-06-22T07:52:28 | {} | MEMBER |
vuejs | core | 1,164,594,984 | 5,933 | LinusBorg | It's a bit of a question how deep the compiler should follow this rabbit hole of nested `v-if` fragments, but it should be doable. We'll rarely have this more than 3 levels deep. | 2022-06-23T15:59:36 | 2022-06-23T15:59:36 | {} | MEMBER |
vuejs | core | 1,164,597,359 | 6,166 | LinusBorg | Please explain what you mean by
> "When it is packaged with vue-cli-service, it returns null".
How exactly do you use it when it's packaged? do you link it locally? Then you likely have the common problem of having two distinct copies of Vue included in the app - one from the lib's `/node_modules`, one from the... | 2022-06-23T16:01:44 | 2022-06-23T16:01:44 | {} | MEMBER |
vuejs | core | 1,159,164,034 | 6,133 | LinusBorg | This is documented behaviour and has been since Vue 2.
https://vuejs.org/api/sfc-css-features.html#child-component-root-elements
| 2022-06-17T19:17:39 | 2022-06-17T19:18:54 | {} | MEMBER |
vuejs | core | 1,159,403,994 | 6,086 | LinusBorg | @lidlanca Adding more modifiers to covers these cases would be thinkable in theory, though I'd be hesitant to add more shorthands as it will make the template more and more cryptic.
This should likely be discussed in an RFC: github.com/vuejs/rfcs | 2022-06-18T09:12:38 | 2022-06-18T09:12:38 | {} | MEMBER |
vuejs | core | 1,159,457,484 | 5,435 | hengshanMWC | > Works for me. Is there any progress?
fix vscode debug | 2022-06-18T12:37:37 | 2022-06-18T12:37:37 | {} | NONE |
vuejs | core | 1,162,903,381 | 6,161 | Wouter125 | Aaah check. Have missed that. Think we can close this one then? Otherwise it's a useless issue. | 2022-06-22T10:04:28 | 2022-06-22T10:04:28 | {} | NONE |
vuejs | core | 1,164,275,107 | 5,933 | mxaGianluca | You can use this: https://vuejs.org/guide/components/attrs.html#disabling-attribute-inheritance | 2022-06-23T11:06:54 | 2022-06-23T11:06:54 | {
"+1": 1
} | NONE |
vuejs | core | 1,124,586,690 | 4,989 | adamcjm | I defined an external interface and declare props's type with extends, then the props gone. I can't get right props value. | 2022-05-12T06:39:38 | 2022-05-12T06:39:38 | {} | NONE |
vuejs | core | 1,124,906,326 | 5,907 | netlify[bot] | ### <span aria-hidden="true">✅</span> Deploy Preview for *vue-next-template-explorer* ready!
| Name | Link |
|---------------------------------|------------------------|
|<span aria-hidden="true">🔨</span> Latest commit | be9c26a01830fbf2df6992700d0e44b5a38afc07 |
|<span aria-hidden="true">🔍</span> Latest deploy lo... | 2022-05-12T12:02:45 | 2022-05-12T12:03:26 | {} | NONE |
vuejs | core | 1,125,802,948 | 3,034 | netlify[bot] | ### <span aria-hidden="true">❌</span> Deploy Preview for *vuejs-coverage* failed.
| Name | Link |
|---------------------------------|------------------------|
|<span aria-hidden="true">🔨</span> Latest commit | 4bdc63ddf9a31ca5bde9094549f48d85db0dcbec |
|<span aria-hidden="true">🔍</span> Latest deploy log | https:/... | 2022-05-13T08:43:00 | 2022-05-13T08:43:00 | {} | NONE |
vuejs | core | 1,126,803,664 | 5,922 | LinusBorg | This seems to be a duplicate of #5885 - first-level variables that have the same name as a prop lead to them having type `never`. | 2022-05-14T20:04:18 | 2022-05-14T20:04:18 | {} | MEMBER |
vuejs | core | 1,126,933,377 | 5,923 | LinusBorg | This comes up regularly. Re-renders caused by one reactive change will still update the whole template with the latest data, regardless of that other data being reactive or not.
| 2022-05-15T12:51:25 | 2022-05-15T12:51:59 | {
"+1": 1
} | MEMBER |
vuejs | core | 1,100,156,743 | 5,727 | netlify[bot] | ### <span aria-hidden="true">✅</span> Deploy Preview for *vue-sfc-playground* ready!
| Name | Link |
|---------------------------------|------------------------|
|<span aria-hidden="true">🔨</span> Latest commit | b8e0b240f85d9dbcbe9eea9548a32bf9657b5974 |
|<span aria-hidden="true">🔍</span> Latest deploy log | http... | 2022-04-15T14:54:19 | 2022-05-12T08:18:53 | {} | NONE |
vuejs | core | 1,124,906,328 | 5,907 | netlify[bot] | ### <span aria-hidden="true">✅</span> Deploy Preview for *vue-sfc-playground* ready!
| Name | Link |
|---------------------------------|------------------------|
|<span aria-hidden="true">🔨</span> Latest commit | be9c26a01830fbf2df6992700d0e44b5a38afc07 |
|<span aria-hidden="true">🔍</span> Latest deploy log | http... | 2022-05-12T12:02:45 | 2022-05-12T12:04:55 | {} | NONE |
vuejs | core | 1,124,866,027 | 5,906 | netlify[bot] | ### <span aria-hidden="true">✅</span> Deploy Preview for *vue-sfc-playground* ready!
| Name | Link |
|---------------------------------|------------------------|
|<span aria-hidden="true">🔨</span> Latest commit | 0810d7e65a3e3e3c2044133f096e3c121847060b |
|<span aria-hidden="true">🔍</span> Latest deploy log | http... | 2022-05-12T11:15:39 | 2022-05-12T20:44:41 | {} | NONE |
vuejs | core | 1,125,508,791 | 5,903 | yyx990803 | Good catch - the actual reason is that the child component's root is a hoisted vnode and reused across renders, so directly mutating it causes more and more directives to be inherited. The proper fix is to clone it before mutations. See d36ca4d8 | 2022-05-12T23:30:37 | 2022-05-12T23:30:37 | {} | MEMBER |
vuejs | core | 1,125,614,787 | 5,791 | masterX89 | see #5857 | 2022-05-13T03:13:04 | 2022-05-13T03:13:04 | {} | NONE |
vuejs | core | 1,126,787,991 | 5,922 | liulinboyi | The props doc [link](https://vuejs.org/api/options-state.html#props).
> type: Can be one of the following native constructors: String, Number, Boolean, Array, Object, Date, Function, Symbol, any custom constructor function or an array of those. In development mode, Vue will check if a prop's value matches the declared... | 2022-05-14T18:13:54 | 2022-05-14T18:15:20 | {} | MEMBER |
vuejs | core | 1,126,918,805 | 4,163 | kasvith | any status on this? | 2022-05-15T11:42:43 | 2022-05-15T11:42:43 | {} | NONE |
vuejs | core | 1,127,272,502 | 5,927 | netlify[bot] | ### <span aria-hidden="true">❌</span> Deploy Preview for *vuejs-coverage* failed.
| Name | Link |
|---------------------------------|------------------------|
|<span aria-hidden="true">🔨</span> Latest commit | 89be5ca5f3a18586f619992c9b00158081da6870 |
|<span aria-hidden="true">🔍</span> Latest deploy log | https:/... | 2022-05-16T06:31:26 | 2022-05-16T07:22:58 | {} | NONE |
vuejs | core | 1,124,626,754 | 5,352 | meteorlxy | Might be duplicate of #3989 ? | 2022-05-12T07:25:27 | 2022-05-12T07:25:27 | {} | MEMBER |
vuejs | core | 1,125,455,317 | 4,994 | simlevesque | @enjoyyourcopepods you should not do this. defineProps is not accessible at runtime. | 2022-05-12T21:54:49 | 2022-05-12T21:54:49 | {} | CONTRIBUTOR |
vuejs | core | 1,126,879,867 | 5,435 | hengshanMWC | @HcySunYang look look | 2022-05-15T07:47:32 | 2022-05-15T07:47:32 | {} | NONE |
vuejs | core | 1,126,976,671 | 5,918 | liulinboyi | 全局 Mixin生命周期和在组件中以`组合式 API`的方式使用生命周期,生命周期顺序确实会错误。
使用全局 Mixin生命周期时,在组件中以`Options API`的方式使用生命周期,顺序是正确的的,建议这样用。
建议`Options API`和`组合式 API`不要混用。
具体这个问题怎么解决,需要看官方。
怎样使用好`组合式 API`,可以看[naive-ui](https://github.com/TuSimple/naive-ui)。 | 2022-05-15T16:45:21 | 2022-05-15T16:45:21 | {} | MEMBER |
vuejs | core | 1,124,747,567 | 5,905 | it-chenliang | 我是想在uniapp开发一个类似于el-tabs的组件,主要参考的是这篇博客 - [vue3 封装简单的 tabs 切换组件](https://www.cnblogs.com/tizi/p/15038009.html),在`H5`环境运行正常的,在`MP-WEXIN`环境就报上面的错误。 | 2022-05-12T09:31:21 | 2022-05-12T09:31:21 | {} | NONE |
vuejs | core | 1,125,030,088 | 5,218 | Tofandel | Or we need a way to customize (webpack option) how this name is generated with a function that takes the path in param and outputs the name
| 2022-05-12T13:57:51 | 2022-05-12T13:57:51 | {} | CONTRIBUTOR |
vuejs | core | 1,125,932,641 | 3,671 | ifoba | > Vue2 + Composition API, it got the same problem in setup function
@chenguzhen87 Faced a similar problem, did you find a way to solve it? | 2022-05-13T11:02:11 | 2022-05-13T11:02:11 | {
"+1": 1
} | NONE |
vuejs | core | 1,126,000,388 | 5,913 | netlify[bot] | ### <span aria-hidden="true">❌</span> Deploy Preview for *vuejs-coverage* failed.
| Name | Link |
|---------------------------------|------------------------|
|<span aria-hidden="true">🔨</span> Latest commit | 1ffe3b4707ec1e0ef550d7d2e84a8cb699e5b21c |
|<span aria-hidden="true">🔍</span> Latest deploy log | https:/... | 2022-05-13T12:24:06 | 2022-05-13T12:24:06 | {} | NONE |
vuejs | core | 1,126,956,816 | 5,924 | Justineo | I believe with current code, computed effects are triggered before others. Your modified version is not equivalent. | 2022-05-15T14:49:14 | 2022-05-15T14:49:14 | {} | MEMBER |
vuejs | core | 1,126,964,157 | 5,924 | leopiccionia | @Justineo is correct. The two loops are a fix for #5720. | 2022-05-15T15:28:01 | 2022-05-15T15:28:47 | {} | CONTRIBUTOR |
vuejs | core | 1,124,579,896 | 5,546 | iwusong | > Duplicate of #5189 and fixed by [51f3d38](https://github.com/vuejs/core/commit/51f3d386de7f5fcec6eb4c1c223ba824be036648)
now, a template ↓ , has attribute fallthrough
```
<template v-if="true">
<span>test</span>
</template>
````
a template ↓ , has not attribute fallthrough
```
<template v-... | 2022-05-12T06:28:44 | 2022-05-12T06:28:44 | {} | CONTRIBUTOR |
vuejs | core | 1,100,156,746 | 5,727 | netlify[bot] | ### <span aria-hidden="true">✅</span> Deploy Preview for *vue-next-template-explorer* ready!
| Name | Link |
|---------------------------------|------------------------|
|<span aria-hidden="true">🔨</span> Latest commit | b8e0b240f85d9dbcbe9eea9548a32bf9657b5974 |
|<span aria-hidden="true">🔍</span> Latest deploy lo... | 2022-04-15T14:54:19 | 2022-05-12T08:16:47 | {} | NONE |
vuejs | core | 1,125,528,938 | 5,774 | yyx990803 | This is somewhat intentional for better readability - in the future we may also need to add other branches so it's more refactor friendly. | 2022-05-13T00:01:04 | 2022-05-13T00:01:04 | {} | MEMBER |
vuejs | core | 1,125,777,399 | 5,856 | yyx990803 | There are a few conflicts with main, LGTM after resolve | 2022-05-13T08:13:50 | 2022-05-13T08:13:50 | {} | MEMBER |
vuejs | core | 1,125,802,927 | 3,034 | netlify[bot] | ### <span aria-hidden="true">❌</span> Deploy Preview for *vue-next-template-explorer* failed.
| Name | Link |
|---------------------------------|------------------------|
|<span aria-hidden="true">🔨</span> Latest commit | 4bdc63ddf9a31ca5bde9094549f48d85db0dcbec |
|<span aria-hidden="true">🔍</span> Latest deploy l... | 2022-05-13T08:42:59 | 2022-05-13T08:42:59 | {} | NONE |
vuejs | core | 1,126,773,827 | 5,921 | liulinboyi | For now, for nested refs, you can add the .`value` suffix. | 2022-05-14T16:47:00 | 2022-05-14T16:47:00 | {} | MEMBER |
vuejs | core | 1,126,806,884 | 5,921 | LinusBorg | https://vuejs.org/guide/essentials/reactivity-fundamentals.html#ref-unwrapping-in-templates
> When refs are accessed as **top-level properties** in the template, they are automatically "unwrapped" so there is no need to use .value. | 2022-05-14T20:32:17 | 2022-05-14T20:32:17 | {} | MEMBER |
vuejs | core | 1,127,039,592 | 5,925 | vesper8 | Possibly related
https://github.com/vuejs/core/issues/4662
https://maximomussini.com/posts/vue-custom-elements | 2022-05-15T21:25:02 | 2022-05-15T21:25:02 | {} | NONE |
vuejs | core | 1,124,542,077 | 5,904 | netlify[bot] | ### <span aria-hidden="true">✅</span> Deploy Preview for *vue-sfc-playground* ready!
| Name | Link |
|---------------------------------|------------------------|
|<span aria-hidden="true">🔨</span> Latest commit | c35b9cc145bc837f3f7e677752542e7ca4aaabf8 |
|<span aria-hidden="true">🔍</span> Latest deploy log | http... | 2022-05-12T05:23:18 | 2022-05-12T05:25:29 | {} | NONE |
vuejs | core | 1,100,156,745 | 5,727 | netlify[bot] | ### <span aria-hidden="true">✅</span> Deploy Preview for *vuejs-coverage* ready!
| Name | Link |
|---------------------------------|------------------------|
|<span aria-hidden="true">🔨</span> Latest commit | b8e0b240f85d9dbcbe9eea9548a32bf9657b5974 |
|<span aria-hidden="true">🔍</span> Latest deploy log | https://... | 2022-04-15T14:54:19 | 2022-05-12T08:21:24 | {} | NONE |
vuejs | core | 1,124,837,375 | 5,897 | yyx990803 | I'm not sure myself but this seems relevant: https://libguides.mit.edu/c.php?g=551454&p=3900280 | 2022-05-12T10:41:42 | 2022-05-12T10:41:42 | {} | MEMBER |
vuejs | core | 1,125,611,032 | 5,796 | yyx990803 | Cannot resolve conflict by pushing, so manually picked in 3b7b1071 | 2022-05-13T03:04:55 | 2022-05-13T03:04:55 | {
"+1": 1
} | MEMBER |
vuejs | core | 1,125,615,809 | 5,773 | masterX89 | see #5857 | 2022-05-13T03:15:00 | 2022-05-13T03:15:00 | {} | NONE |
vuejs | core | 1,125,791,655 | 5,856 | antfu | Done | 2022-05-13T08:30:10 | 2022-05-13T08:30:10 | {} | MEMBER |
vuejs | core | 1,127,270,495 | 5,918 | liulinboyi | > 嗯..明白这个特点,但我们的组件库统一使用 Composition api 进行编写,现在需要对所有 vue 实例在 mounted 阶段 hack 或植入一些代码,但植入代码的顺序需要在组件 mounted 以前,为了不影响组件本身的代码,从官方文档的角度出发,mixin 的设计是一个比较好的方式...如果全局 mixin 在设计上无法与 options api 保持一直,那后续官方文档上标记下吧
理解。 | 2022-05-16T06:28:43 | 2022-05-16T06:28:43 | {} | MEMBER |
vuejs | core | 1,030,588,201 | 3,399 | netlify[bot] | ### <span aria-hidden="true">❌</span> Deploy Preview for *vuejs-coverage* failed.
| Name | Link |
|---------------------------------|------------------------|
|<span aria-hidden="true">🔨</span> Latest commit | a59d3c5e1086c4b397730c306be36715c2e8ddb9 |
|<span aria-hidden="true">🔍</span> Latest deploy log | https:/... | 2022-02-05T09:27:59 | 2022-05-12T07:18:30 | {} | NONE |
vuejs | core | 1,124,740,904 | 5,905 | liulinboyi | 定位问题,需要更多的信息。 | 2022-05-12T09:25:28 | 2022-05-12T09:25:28 | {} | MEMBER |
vuejs | core | 1,124,906,333 | 5,907 | netlify[bot] | ### <span aria-hidden="true">✅</span> Deploy Preview for *vuejs-coverage* ready!
| Name | Link |
|---------------------------------|------------------------|
|<span aria-hidden="true">🔨</span> Latest commit | be9c26a01830fbf2df6992700d0e44b5a38afc07 |
|<span aria-hidden="true">🔍</span> Latest deploy log | https://... | 2022-05-12T12:02:45 | 2022-05-12T12:09:44 | {} | NONE |
vuejs | core | 1,124,866,038 | 5,906 | netlify[bot] | ### <span aria-hidden="true">✅</span> Deploy Preview for *vuejs-coverage* ready!
| Name | Link |
|---------------------------------|------------------------|
|<span aria-hidden="true">🔨</span> Latest commit | 0810d7e65a3e3e3c2044133f096e3c121847060b |
|<span aria-hidden="true">🔍</span> Latest deploy log | https://... | 2022-05-12T11:15:39 | 2022-05-12T20:47:14 | {} | NONE |
vuejs | core | 1,125,782,559 | 5,802 | yyx990803 | This doesn't look right. | 2022-05-13T08:19:35 | 2022-05-13T08:19:35 | {} | MEMBER |
vuejs | core | 1,126,667,041 | 5,916 | netlify[bot] | ### <span aria-hidden="true">❌</span> Deploy Preview for *vuejs-coverage* failed.
| Name | Link |
|---------------------------------|------------------------|
|<span aria-hidden="true">🔨</span> Latest commit | b64f99c6d2253d71ff1d4f1ced69bd669e314c44 |
|<span aria-hidden="true">🔍</span> Latest deploy log | https:/... | 2022-05-14T08:02:55 | 2022-05-14T16:24:43 | {} | NONE |
vuejs | core | 1,124,542,081 | 5,904 | netlify[bot] | ### <span aria-hidden="true">✅</span> Deploy Preview for *vue-next-template-explorer* ready!
| Name | Link |
|---------------------------------|------------------------|
|<span aria-hidden="true">🔨</span> Latest commit | c35b9cc145bc837f3f7e677752542e7ca4aaabf8 |
|<span aria-hidden="true">🔍</span> Latest deploy lo... | 2022-05-12T05:23:19 | 2022-05-12T05:24:13 | {} | NONE |
vuejs | core | 1,125,677,494 | 4,994 | enjoyyourcopepods | I eventually solved my "defineProps is not defined" ESLint errors by doing the following:
- Updated Vue, created a new project, copied the old .vue files into the new project directories.
- Installed nvm version 1.1.9. In nvm, installed and used node 16.13.2 (solving https://github.com/npm/cli/issues/4234).
- In V... | 2022-05-13T05:44:08 | 2022-05-13T05:44:08 | {
"+1": 1
} | NONE |
vuejs | core | 1,125,741,131 | 5,832 | iwusong | By the way,if template without children ,it will be as stable fragment also. It is no real impact but is not quite semantic | 2022-05-13T07:28:44 | 2022-05-13T07:28:44 | {} | CONTRIBUTOR |
vuejs | core | 1,125,779,671 | 5,762 | yyx990803 | fixed in https://github.com/vuejs/core/commit/f2c48f535250d01133a5e49c0bf2c26a46b6d935 | 2022-05-13T08:16:29 | 2022-05-13T08:16:29 | {} | MEMBER |
vuejs | core | 1,124,639,227 | 5,901 | jods4 | Fair, I was wary of phones holding you back!
Out of curiosity, in this day of "evergreen" browsers, what is the Vue strategy for using web tech in years to come?
Is there an official list of minimally supported version that you will bump from time to time?
Will you refrain from using new apis until a big new Vue... | 2022-05-12T07:39:35 | 2022-05-12T07:39:35 | {} | CONTRIBUTOR |
vuejs | core | 1,125,511,799 | 5,877 | yyx990803 | These helpers are only used to potentially reduce total bundle size in code that may run in the browser. In code branches that doesn't run in the browser, usage of these methods are in general not necessary and inline guards are fine. | 2022-05-12T23:37:07 | 2022-05-12T23:37:07 | {} | MEMBER |
vuejs | core | 1,041,033,861 | 5,436 | netlify[bot] | ### <span aria-hidden="true">❌</span> Deploy Preview for *vuejs-coverage* failed.
| Name | Link |
|---------------------------------|------------------------|
|<span aria-hidden="true">🔨</span> Latest commit | 8dea0dddbf0ff7db1a6823a12a21d42eaa13cd40 |
|<span aria-hidden="true">🔍</span> Latest deploy log | https:/... | 2022-02-16T02:37:37 | 2022-05-13T02:27:31 | {} | NONE |
vuejs | core | 1,113,090,756 | 5,832 | netlify[bot] | ### <span aria-hidden="true">❌</span> Deploy Preview for *vuejs-coverage* failed.
| Name | Link |
|---------------------------------|------------------------|
|<span aria-hidden="true">🔨</span> Latest commit | c6f21ff91b2d786184f5917daba75dd6f971fdab |
|<span aria-hidden="true">🔍</span> Latest deploy log | https:/... | 2022-04-29T09:15:30 | 2022-05-13T06:34:40 | {} | NONE |
vuejs | core | 1,125,784,914 | 5,743 | yyx990803 | This seems unnecessary since it's not a perf bottleneck so the overall perf gain will likely be unnoticeable while the implementation being much more complex. | 2022-05-13T08:22:17 | 2022-05-13T08:22:17 | {} | MEMBER |
vuejs | core | 1,125,802,918 | 3,034 | netlify[bot] | ### <span aria-hidden="true">❌</span> Deploy Preview for *vue-sfc-playground* failed.
| Name | Link |
|---------------------------------|------------------------|
|<span aria-hidden="true">🔨</span> Latest commit | 4bdc63ddf9a31ca5bde9094549f48d85db0dcbec |
|<span aria-hidden="true">🔍</span> Latest deploy log | htt... | 2022-05-13T08:42:59 | 2022-05-13T08:42:59 | {} | NONE |
vuejs | core | 1,126,634,384 | 5,910 | liulinboyi | HMR only rerender template, not `triggerEffects`. | 2022-05-14T04:13:49 | 2022-05-14T04:13:49 | {} | MEMBER |
vuejs | core | 1,124,982,874 | 5,218 | joezimjs | I don't think this should have been closed, because we're all aware that it automatically infers component names. We want to be able to explicitly write them because file name isn't always the most useful.
Anyway, @Mrlilili a way you can handle your situation is to have OtherHome.vue plus an index.js (or .ts obvious... | 2022-05-12T13:16:57 | 2022-05-12T13:18:32 | {
"+1": 10
} | NONE |
vuejs | core | 1,125,568,536 | 5,857 | ReadyPlayer67 | Thank you Evan, I've learning runtime-core in vue recently and haven't learned compiler yet, It's time to start reading compiler-core. | 2022-05-13T01:26:30 | 2022-05-13T01:26:30 | {} | NONE |
vuejs | core | 1,126,919,809 | 5,760 | kasvith | Waiting for this to get merged | 2022-05-15T11:46:51 | 2022-05-15T11:46:51 | {} | NONE |
vuejs | core | 1,126,958,085 | 5,924 | Jerry965 | > I believe with current code, computed effects are triggered before others. Your modified version is not equivalent.
Thanks for your answer | 2022-05-15T14:56:17 | 2022-05-15T14:56:17 | {} | NONE |
vuejs | core | 1,124,850,649 | 5,104 | yyx990803 | `defineProps` must be a top-level call with the exception of `withDefaults`.
Also with reactivity transform, there is no need to use `toRefs()` on it. | 2022-05-12T10:58:20 | 2022-05-12T10:58:20 | {} | MEMBER |
vuejs | core | 1,124,852,104 | 5,218 | yyx990803 | 16939241 automatically infers component name based on filename. | 2022-05-12T10:59:45 | 2022-05-12T10:59:45 | {
"-1": 1,
"eyes": 1
} | MEMBER |
vuejs | core | 1,125,753,793 | 5,810 | yyx990803 | Manually merged as a0290fe7 | 2022-05-13T07:44:10 | 2022-05-13T07:44:10 | {} | MEMBER |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.