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 | docs | 913,352,231 | 1,160 | skirtles-code | I'm going to close this for now as I don't know what it's requesting. It can be reopened if necessary. | 2021-09-06T05:20:57 | 2021-09-06T05:20:57 | {} | CONTRIBUTOR |
vuejs | docs | 891,664,471 | 1,154 | zhenzhenChange | Executed `twice`, as expected (executed `once` at the beginning, that's why the `issue` was raised)
```vue
<script setup lang="ts">
import { ref } from '@vue/reactivity'
import { watch } from '@vue/runtime-core'
const valueOne = ref('one')
const valueTwo = ref('two')
watch([valueOne, valueTwo], (oneWithTwo, ... | 2021-08-03T08:54:27 | 2021-08-03T08:54:27 | {} | CONTRIBUTOR |
vuejs | docs | 899,019,251 | 460 | skirtles-code | @bencodezen The core features of scoped CSS are now documented in the API reference:
https://v3.vuejs.org/api/sfc-style.html
Do you think we need a separate entry in the migration guide, or can this be closed? | 2021-08-15T09:01:55 | 2021-08-15T09:01:55 | {} | CONTRIBUTOR |
vuejs | docs | 899,020,045 | 295 | skirtles-code | @bencodezen Was the objective here just to reach parity with v2? Is there anything specific that still needs to happen before this can be closed? | 2021-08-15T09:08:29 | 2021-08-15T09:08:29 | {} | CONTRIBUTOR |
vuejs | docs | 902,533,620 | 1,195 | Yukon123 | My test example:
-
```
<template>
<div>
<div @click="foo += 1">{{ foo }}</div>
</div>
</template>
<script>
import { ref, watch, onMounted, onUpdated, onBeforeMount, onBeforeUpdate } from 'vue'
export default {
setup() {
const foo = ref(1)
//lifecycle-hooks
onBeforeMount(() =... | 2021-08-20T08:38:39 | 2021-08-20T08:38:39 | {} | NONE |
vuejs | docs | 903,030,861 | 849 | julie777 | > 1. Don't mutate any objects/arrays returned by `computed`
The statements above regarding this aren't always correct. They seem to be based on props. I have been doing some experiments with reactivity and I want to share a counter-example. I'm just going to provide the setup function.
```lang-js
setup(props... | 2021-08-21T01:21:47 | 2021-08-21T01:21:47 | {} | NONE |
vuejs | docs | 905,332,137 | 1,195 | Yukon123 | @zhenzhenChange Thanks for the reply and example.I try on codesanbox and my computer,both trigger twice.
>
```js
const foo = ref('')
const bar = ref('')
watch(
[foo, bar],
(newV, oldV) => {
console.log('Watch foo pre:', newV, oldV)
},
)
foo.value = 'John'
... | 2021-08-25T09:22:09 | 2021-08-25T09:57:18 | {} | NONE |
vuejs | docs | 915,648,012 | 1,119 | skirtles-code | @danielkellyio The thing that's currently holding this up is reviewing the subtitles. I've only watched through a couple of them and there are lots of typos and it takes me a ridiculously long time to create a full list of all the corrections and their timestamps. If I were reviewing the same thing as text it would tak... | 2021-09-08T23:50:20 | 2021-09-08T23:50:20 | {} | CONTRIBUTOR |
vuejs | docs | 663,819,526 | 334 | initmn | @NataliaTepluhina thank's for reply my answer, btw i was found the problem for this issue. the problem is when i upgrading dependencies, my vue 3 was replaced to vue 2. | 2020-07-25T06:55:07 | 2020-07-25T06:55:07 | {} | NONE |
vuejs | docs | 664,354,947 | 162 | edimitchel | @bencodezen is it possible to use fragments manually ? i.e. when I want to create an wrapper in a component which I cannot split. We can use `template` for that but I'm asking if a new global component will be added, like <fragment> ou <> ? | 2020-07-27T12:02:41 | 2020-07-27T12:02:41 | {} | CONTRIBUTOR |
vuejs | docs | 666,887,804 | 361 | NataliaTepluhina | @Recks11 thank you for reporting this! Fixed via https://github.com/vuejs/docs-next/commit/7662f5fd98c7e0c167212f4d935fa86153fde82b | 2020-07-31T03:06:27 | 2020-07-31T03:06:27 | {} | MEMBER |
vuejs | docs | 663,854,557 | 338 | NataliaTepluhina | @onmyflow as far as I remember, for Vue 3 `key` property will be only _required_ on `v-for` loops on components. On native HTML elements, it's _recommended_ if you have a unique property but not _required_
Could you please post a link to the mentioned confusion? | 2020-07-25T13:17:03 | 2020-07-25T13:17:03 | {} | MEMBER |
vuejs | docs | 665,056,885 | 162 | bencodezen | Hey @edimitchel! To make sure I understood the question correctly, are you asking whether or not fragments can be used in global components as a generic wrapper? Also, if possible, could you provide some pseudo-code to show an example of what you're thinking of? | 2020-07-28T13:58:58 | 2020-07-28T13:58:58 | {} | MEMBER |
vuejs | docs | 666,379,257 | 349 | marina-mosti | Thanks for the double check @NataliaTepluhina
I think were good to go | 2020-07-30T13:54:34 | 2020-07-30T13:54:34 | {} | COLLABORATOR |
vuejs | docs | 667,127,542 | 352 | NoelDeMartin | Hi @bencodezen. I've been looking into the [@vuepress/plugin-search](https://vuepress.vuejs.org/plugin/official/plugin-search.html#install) plugin and I'll probably make a PR to add it there afterwards.
But the docs at the moment are built using VuePress `1.3`, and the latest version is `1.5`. So I think it's still ... | 2020-07-31T13:45:20 | 2020-07-31T15:44:40 | {} | CONTRIBUTOR |
vuejs | docs | 661,468,670 | 184 | qgates | @ota-meshi is there a method for specifying custom `delimiters` in Vue 3? Can't find any reference to it in the docs. TIA | 2020-07-21T00:06:33 | 2020-07-21T00:06:33 | {} | NONE |
vuejs | docs | 661,618,329 | 300 | CyberAP | It seems that component `is` also accepts VNodes, will test it further. | 2020-07-21T04:00:31 | 2020-07-21T04:00:31 | {} | CONTRIBUTOR |
vuejs | docs | 663,974,619 | 339 | NataliaTepluhina | @pikax thank you! Applied more fixes and there is still one question remaining. Back to you ⚽ | 2020-07-26T11:11:57 | 2020-07-26T11:11:57 | {
"eyes": 1
} | MEMBER |
vuejs | docs | 663,976,917 | 340 | NataliaTepluhina | @sdras thank you for the super valuable comments! 👍🏻 I've updated the PR, could you please take a brief look over changes? | 2020-07-26T11:34:34 | 2020-07-26T11:34:34 | {} | MEMBER |
vuejs | docs | 667,116,066 | 352 | bencodezen | @NoelDeMartin VuePress comes with a built-in search functionality, so I wonder if it makes sense to see if there's a way you can leverage it to build the search page (rather than starting from scratch). That said, if VuePress search functionality could use some improvement, then I think we could use your help on updati... | 2020-07-31T13:20:11 | 2020-07-31T13:20:50 | {} | MEMBER |
vuejs | docs | 661,281,740 | 253 | CyberAP | Mobile users don't have an easy access to browsers console, I think this should be considered as well. For me personally it is enough for the first example to be a simple input field and a text value synced with the field. That I think singlehandedly showcases what problems Vue solves. | 2020-07-20T19:14:24 | 2020-07-20T19:14:24 | {} | CONTRIBUTOR |
vuejs | docs | 662,212,890 | 310 | misitebao | OK, thank you. | 2020-07-22T02:57:45 | 2020-07-22T02:57:45 | {} | NONE |
vuejs | docs | 663,872,770 | 339 | NataliaTepluhina | @pikax thank you for all the invaluable suggestions! I've applied fixes, could you please take a second look? 🙏🏻 | 2020-07-25T16:15:21 | 2020-07-25T16:15:21 | {
"eyes": 1
} | MEMBER |
vuejs | docs | 661,045,867 | 32 | CyberAP | The questions I have for i18n are:
1. What is the user experience when a page is partially or not translated at all?
2. Will the new i18n be able to handle switching language and preserving the same page for the user?
3. How refactoring documentation will affect translators?
4. What is the strategy for translator... | 2020-07-20T13:39:41 | 2020-07-20T13:39:41 | {} | CONTRIBUTOR |
vuejs | docs | 661,119,222 | 290 | bencodezen | Gonna merge without approval after verifying redirects work so it doesn't break for other people. | 2020-07-20T15:42:43 | 2020-07-20T15:42:43 | {} | MEMBER |
vuejs | docs | 661,723,831 | 306 | Glebkiselev11 | o sorry | 2020-07-21T08:47:20 | 2020-07-21T08:47:20 | {} | NONE |
vuejs | docs | 662,087,963 | 291 | phanan | Thanks for the PR. The whole point of having the screenshots is to demonstrate how the code would look like in a real editor, with full syntax highlighting for different processors. Your change just defeats that purpose (notice how `template` and `style` lose the highlights).
Nevertheless, as clearly mentioned in th... | 2020-07-21T20:25:18 | 2020-07-21T20:25:18 | {} | MEMBER |
vuejs | docs | 662,422,891 | 324 | sven-ahrens | Oh, it doesn't even open up when clicking on it. You'll have to right click it and try to open it up then | 2020-07-22T12:24:56 | 2020-07-22T12:24:56 | {} | NONE |
vuejs | docs | 663,318,566 | 334 | NataliaTepluhina | @nasirDoe thank you for reporting this! Could you please open the same issue on the Vite repository for visibility? | 2020-07-24T02:17:11 | 2020-07-24T02:17:11 | {} | MEMBER |
vuejs | docs | 663,917,960 | 99 | sdras | I haven't dug in yet but self-assigned. @bencodezen in the docs meeting on Friday let's sync on it. :) | 2020-07-25T23:53:13 | 2020-07-25T23:53:13 | {
"+1": 1
} | MEMBER |
vuejs | docs | 664,447,987 | 343 | bencodezen | Nice job on this @NataliaTepluhina! Do you think it would be worth adding a pause / resume button on the example since it technically run infinitely? And to be clear, I don't think we should add it to the code snippet itself, but just on the rendered version as a UX enhancement. | 2020-07-27T14:58:11 | 2020-07-27T14:58:11 | {} | MEMBER |
vuejs | docs | 665,053,777 | 349 | bencodezen | Great job @marina-mosti! Once the comments from @NataliaTepluhina are addressed it is a 👍 from me! | 2020-07-28T13:53:19 | 2020-07-28T13:53:19 | {} | MEMBER |
vuejs | docs | 665,082,197 | 343 | NataliaTepluhina | @bencodezen fix applied! | 2020-07-28T14:42:57 | 2020-07-28T14:42:57 | {} | MEMBER |
vuejs | docs | 667,522,046 | 366 | Aferz | PR: https://github.com/vuejs/docs-next/pull/365
We overlapped. Maintainers, feel free to close the PR if needed. | 2020-08-01T12:11:46 | 2020-08-01T12:12:26 | {} | CONTRIBUTOR |
vuejs | docs | 667,631,202 | 321 | NataliaTepluhina | Closing this issue as related PR was merged | 2020-08-02T05:40:39 | 2020-08-02T05:40:39 | {} | MEMBER |
vuejs | docs | 662,973,607 | 331 | cedricradicia | Ohhh that's really nothing compare to the great job all vue team are doing for us!
By the way, thank you for the talk you made on Quasar conf, it was simple and interesting! (And I hope you have try Quasar right now :p ) | 2020-07-23T12:17:09 | 2020-07-23T12:17:09 | {} | CONTRIBUTOR |
vuejs | docs | 663,623,136 | 313 | NataliaTepluhina | @marina-mosti thank you for taking an effort an implementing all the changes 🙇🏻 Looks good to me! | 2020-07-24T16:29:14 | 2020-07-24T16:29:14 | {} | MEMBER |
vuejs | docs | 666,458,150 | 354 | bencodezen | @phanan Oof that's a great point. I'll just did a quick search and it looks like you're concern is correct. I've amended the original proposal. | 2020-07-30T15:30:36 | 2020-07-30T15:30:36 | {} | MEMBER |
vuejs | docs | 661,510,183 | 184 | qgates | @ota-meshi Thanks for your reply, I did find that in the source 😉 Just not sure what/where to configure. I'm using webpack, care to point me in the right direction? Many thanks again 🙂 | 2020-07-21T00:57:46 | 2020-07-21T00:57:46 | {} | NONE |
vuejs | docs | 661,713,448 | 307 | sven-ahrens | Probably it should redirect to this url here: https://v3.vuejs.org/guide/composition-api-template-refs.html#template-refs | 2020-07-21T08:26:23 | 2020-07-21T08:26:23 | {} | NONE |
vuejs | docs | 663,134,529 | 332 | NataliaTepluhina | @JoeSchr thank you! There is always one component where you fail to replace 😅
Fixed via https://github.com/vuejs/docs-next/commit/c8f41824fbfc73c54b4b7015e21cdcaa39848dc1 | 2020-07-23T17:28:29 | 2020-07-23T17:28:29 | {} | MEMBER |
vuejs | docs | 663,369,307 | 333 | NataliaTepluhina | @silkwromzf thank you! Fixed via https://github.com/vuejs/docs-next/commit/f75db8e53d399d55fbc11f9d404db3b34e8ab5d7 | 2020-07-24T06:34:10 | 2020-07-24T06:34:10 | {} | MEMBER |
vuejs | docs | 663,840,909 | 337 | NataliaTepluhina | @ibwei thanks for reporting this! Unfortunately, I can't reproduce the issue, could you please clean the browser cache for this page or try it incognito mode? | 2020-07-25T10:47:25 | 2020-07-25T10:47:25 | {} | MEMBER |
vuejs | docs | 667,525,351 | 366 | NataliaTepluhina | @cathrinevaage and @Aferz thank you both for the report and suggested change! 🙇🏻♀️ | 2020-08-01T12:35:32 | 2020-08-01T12:35:32 | {} | MEMBER |
vuejs | docs | 661,055,523 | 32 | bencodezen | Thanks for everyone's input! At this time we're still trying to figure out how to best approach this given current translation efforts in v2.
For more information on getting involved with the translation community, check out https://github.com/vuejs/vuejs.org/issues/2015 | 2020-07-20T13:56:02 | 2020-07-20T13:56:02 | {} | MEMBER |
vuejs | docs | 661,769,964 | 308 | privatenumber | Awesome! Thanks for addressing it so fast.
Minor nitpick -- I would clarify that the second-half of the event name `update:lastName` is converted to kebab-case to map to the v-model binding `v-model:last-name`. | 2020-07-21T10:18:17 | 2020-07-21T10:18:17 | {} | NONE |
vuejs | docs | 662,313,189 | 308 | privatenumber | @NataliaTepluhina Is it alright if I make a follow up PR to address those points?
I don't want to put time into it if it's not welcome but I would love to contribute to help improve the docs. | 2020-07-22T08:15:39 | 2020-07-22T08:15:55 | {} | NONE |
vuejs | docs | 662,421,800 | 323 | NataliaTepluhina | Thank you for reporting this @sven-ahrens! It's an intentional TODO link, we will add a link to `Comparison` section when it's ready | 2020-07-22T12:22:24 | 2020-07-22T12:22:24 | {} | MEMBER |
vuejs | docs | 662,599,280 | 313 | marina-mosti | Hey @NataliaTepluhina, ended up refactoring the whole thing into `markdown` with a couple components sprinkled in between. Looks neater, and should be easier to maintain. | 2020-07-22T17:58:02 | 2020-07-22T17:58:02 | {} | COLLABORATOR |
vuejs | docs | 666,512,866 | 357 | NataliaTepluhina | I believe there is an issue with Brave browser: https://github.com/vuejs/docs-next/issues/322#issuecomment-662348625 | 2020-07-30T16:37:39 | 2020-07-30T16:37:39 | {} | MEMBER |
vuejs | docs | 667,632,373 | 363 | NataliaTepluhina | @NoelDeMartin thank you for working on this! I see we have this error on build: `ReferenceError: location is not defined at VueComponent.data (src/.vuepress/components/search/index.vue:57:0)`. Could you please look into it and fix it? | 2020-08-02T05:54:52 | 2020-08-02T05:54:52 | {} | MEMBER |
vuejs | docs | 661,754,788 | 307 | NataliaTepluhina | @sven-ahrens thank you! Yes, this section was moved but the link didn't change.
Fixed via https://github.com/vuejs/docs-next/commit/5bc4f7c59e7e73f0800bac43912c88cfe37f11a8 | 2020-07-21T09:46:41 | 2020-07-21T09:46:41 | {} | MEMBER |
vuejs | docs | 662,100,380 | 286 | phanan | LGTM, thanks for the quick catch! | 2020-07-21T20:52:48 | 2020-07-21T20:52:48 | {} | MEMBER |
vuejs | docs | 662,475,896 | 325 | NataliaTepluhina | @sven-ahrens thank you for reporting this! Fixed on `master` | 2020-07-22T14:10:00 | 2020-07-22T14:10:00 | {} | MEMBER |
vuejs | docs | 664,962,430 | 346 | NataliaTepluhina | Closing, as a fix PR was merged | 2020-07-28T10:29:13 | 2020-07-28T10:29:13 | {} | MEMBER |
vuejs | docs | 661,956,646 | 313 | NataliaTepluhina | @marina-mosti Netlify deployment throws an error `ReferenceError: window is not defined` | 2020-07-21T16:14:02 | 2020-07-21T16:14:02 | {} | MEMBER |
vuejs | docs | 662,101,707 | 315 | bencodezen | Nevermind. @NataliaTepluhina fixed it already and I clearly forgot to update my branch before investigating. 😆 | 2020-07-21T20:55:54 | 2020-07-21T20:55:54 | {} | MEMBER |
vuejs | docs | 662,926,296 | 326 | NataliaTepluhina | @185driver thank you for voicing this! We've created a pull request to change the explanation: https://github.com/vuejs/docs-next/pull/330 | 2020-07-23T10:13:03 | 2020-07-23T10:13:03 | {} | MEMBER |
vuejs | docs | 664,163,074 | 345 | NataliaTepluhina | @skirtles-code thank you for taking a large effort to combine everything in the issue! Your opinions are definitely helpful 👍🏻
1-2. I agree that `app` suffix might be misleading. However, we would need to distinguish root component options from component names (`HelloVue` looks like one to me). Do you have any su... | 2020-07-27T07:09:45 | 2020-07-27T07:09:45 | {} | MEMBER |
vuejs | docs | 665,098,194 | 351 | bencodezen | Currently exploring CrowdIn as a possible solution.
But a MVP option would be to have an official list of all translations and repos with their last updated date to make it obvious to people. | 2020-07-28T15:10:06 | 2020-07-28T15:10:06 | {} | MEMBER |
vuejs | docs | 665,232,055 | 349 | marina-mosti | Thanks for the review @NataliaTepluhina and @bencodezen
I've applied the suggestions and modified the codepen, it has to be copied over to the Vue account if approved though.
https://codepen.io/immarina/pen/QWyPmOj | 2020-07-28T19:27:27 | 2020-07-28T19:27:27 | {} | COLLABORATOR |
vuejs | docs | 665,406,535 | 352 | NataliaTepluhina | @NoelDeMartin it would be great to have the same page for new docs! Regarding 'where to implement' question: I believe it would be beneficial for VuePress as well but if you think it would be faster/easier to add it to docs website only - let's implement it here first.
You also reminded me that I need to apply for A... | 2020-07-29T03:16:33 | 2020-07-29T03:16:33 | {} | MEMBER |
vuejs | docs | 667,111,787 | 359 | bencodezen | Related to #138 | 2020-07-31T13:10:31 | 2020-07-31T13:10:31 | {} | MEMBER |
vuejs | docs | 661,081,483 | 28 | bencodezen | For redirects, we should be using Netlify redirects at this point.
If this becomes a bigger issue, will open another issue; but don't think it's worth keeping this open at this time until that comes to pass. | 2020-07-20T14:39:37 | 2020-07-20T14:39:37 | {} | MEMBER |
vuejs | docs | 661,342,818 | 297 | edimitchel | Thanks @CyberAP ! | 2020-07-20T21:28:12 | 2020-07-20T21:28:12 | {} | CONTRIBUTOR |
vuejs | docs | 661,914,522 | 310 | NataliaTepluhina | @misitebao so far we don't have any translations for the v3 website as it's still under active development. We plan to have the same strategy that we had for v2, so I would recommend contacting the group that was handling Mandarin translation for Vue 2: https://github.com/vuejs/cn.vuejs.org | 2020-07-21T15:01:03 | 2020-07-21T15:01:03 | {} | MEMBER |
vuejs | docs | 661,957,647 | 313 | marina-mosti | > @marina-mosti Netlify deployment throws an error `ReferenceError: window is not defined`
Thanks @NataliaTepluhina I just noticed, the last commit should fix. Also added a couple missing logos | 2020-07-21T16:15:56 | 2020-07-21T16:15:56 | {} | COLLABORATOR |
vuejs | docs | 662,099,790 | 284 | phanan | Thanks! | 2020-07-21T20:51:23 | 2020-07-21T20:51:23 | {} | MEMBER |
vuejs | docs | 662,474,405 | 324 | NataliaTepluhina | Thank you for reporting this! Fixed via https://github.com/vuejs/docs-next/commit/885750220b837c738e2cfbab386e669d6012a2f8 | 2020-07-22T14:07:27 | 2020-07-22T14:07:27 | {} | MEMBER |
vuejs | docs | 665,054,078 | 346 | bencodezen | @smoooty Opening an issue was definitely the right thing to do. Thanks @smoooty! | 2020-07-28T13:53:51 | 2020-07-28T13:53:51 | {
"+1": 1
} | MEMBER |
vuejs | docs | 661,108,599 | 289 | CyberAP | Would it be reasonable to add an **Add book** functionality to highlight that computed properties are in fact reactive? That could potentially help to understand why book list was put in `data` rather than in a variable outside app. | 2020-07-20T15:25:09 | 2020-07-20T15:25:09 | {} | CONTRIBUTOR |
vuejs | docs | 661,168,330 | 229 | edimitchel | ✋ | 2020-07-20T16:39:58 | 2020-07-20T16:39:58 | {} | CONTRIBUTOR |
vuejs | docs | 663,369,557 | 330 | NataliaTepluhina | I believe we have a coon consensus here 😅 Thanks @afontcu for the contribution! | 2020-07-24T06:35:20 | 2020-07-24T06:35:20 | {} | MEMBER |
vuejs | docs | 663,821,555 | 335 | NataliaTepluhina | @leopiccionia thank you for mentioning this! I believe you're correct and we should mention this in the migration guide | 2020-07-25T07:16:37 | 2020-07-25T07:16:37 | {
"+1": 2
} | MEMBER |
vuejs | docs | 664,011,384 | 340 | sdras | Thanks Natalia! | 2020-07-26T16:40:56 | 2020-07-26T16:40:56 | {} | MEMBER |
vuejs | docs | 664,408,557 | 342 | NataliaTepluhina | Closing an issue as related PR was merged | 2020-07-27T13:50:12 | 2020-07-27T13:50:12 | {} | MEMBER |
vuejs | docs | 664,775,461 | 345 | skirtles-code | @NataliaTepluhina
> 1-2. I agree that `app` suffix might be misleading. However, we would need to distinguish root component options from component names (`HelloVue` looks like one to me). Do you have any suggestions in mind about what suffix (or prefix maybe) would be the clearest here?
I'm not sure I see the d... | 2020-07-28T04:52:08 | 2020-07-28T04:52:08 | {} | CONTRIBUTOR |
vuejs | docs | 665,014,152 | 346 | gundam-wing | @NataliaTepluhina in the future would it be preferable to open a PR with the fix myself? I wasn't sure the best course of action since the docs are still a work in progress. | 2020-07-28T12:37:13 | 2020-07-28T12:37:42 | {} | NONE |
vuejs | docs | 666,668,908 | 360 | NataliaTepluhina | The migration helper is not ready for now. As soon as it is, we will replace the link with an actual helper. | 2020-07-30T20:22:20 | 2020-07-30T20:22:20 | {} | MEMBER |
vuejs | docs | 661,099,595 | 265 | CyberAP | @sdras could you please reconsider your decision regarding this pull request?
I've found that current documentation actually does have an example of solving a similar problem: https://v3.vuejs.org/guide/custom-directive.html#hook-functions
Here we are introduced to an unknown term `VNode`, a tip explains that it'... | 2020-07-20T15:10:10 | 2020-07-20T15:10:31 | {} | CONTRIBUTOR |
vuejs | docs | 661,412,909 | 295 | edimitchel | Including https://vue-community.org/ ? @gustojs | 2020-07-20T23:00:03 | 2020-07-20T23:00:03 | {} | CONTRIBUTOR |
vuejs | docs | 661,632,056 | 305 | NataliaTepluhina | @joshgrib thank you for reporting this! Fixed via https://github.com/vuejs/docs-next/commit/5e33c5b51462348d7d3b24505e54ec82f18c3180 | 2020-07-21T04:52:35 | 2020-07-21T04:52:35 | {
"+1": 1
} | MEMBER |
vuejs | docs | 660,683,659 | 253 | AjaiKN | Here's my possible solution: <https://github.com/vuejs/docs-next/compare/master...Aurelius333:intro-reactivity-examples-without-codepen>. For the first and third examples, I removed the CodePens and added components into `src/.vuepress/components`. I added `mounted` hooks that attach `this` to `window`:
```js
mou... | 2020-07-19T17:57:23 | 2020-07-21T17:23:32 | {} | CONTRIBUTOR |
vuejs | docs | 662,348,625 | 322 | amrnn90 | Issue was related to me using Brave browser, disabling its privacy protection for the page solved the issue...feel free to close this. | 2020-07-22T09:29:26 | 2020-07-22T09:29:26 | {} | NONE |
vuejs | docs | 663,835,870 | 334 | marina-mosti | @nasirDoe thanks for the update, closing the issue now :) | 2020-07-25T09:50:03 | 2020-07-25T09:50:03 | {} | COLLABORATOR |
vuejs | docs | 663,841,652 | 337 | ibwei | I can't reproduce this problem,either.when I refresh this page,it works well, it may be my own mistake.so I will close it later. | 2020-07-25T10:54:58 | 2020-07-25T10:54:58 | {
"+1": 1
} | NONE |
vuejs | docs | 665,690,451 | 308 | bencodezen | @privatenumber That sounds great. Looking forward to the PR! | 2020-07-29T14:15:10 | 2020-07-29T14:15:10 | {} | MEMBER |
vuejs | docs | 666,274,825 | 354 | phanan | Sounds good! I have one concern, though: Can 2. and 3. co-exist? AFAIK after 2., `vuejs.org` repo will be redirected to `v2.vuejs.org`. I'm not sure how 3. would work—will GitHub allow that, what'd happen to redirections etc. | 2020-07-30T10:05:44 | 2020-07-30T10:05:44 | {} | MEMBER |
vuejs | docs | 666,887,128 | 360 | NataliaTepluhina | I removed a link there for now to prevent confusion 👍🏻 | 2020-07-31T03:03:35 | 2020-07-31T03:03:35 | {} | MEMBER |
vuejs | docs | 661,483,533 | 184 | ota-meshi | @qgates I'm not familiar with it because I'm not using it, but I think you can probably specify it with a parser/compile option. I'm not sure where to specify it in your build system.
https://github.com/vuejs/vue-next/blob/64e2f4643602c5980361e66674141e61ba60ef70/packages/compiler-core/src/parse.ts#L45 | 2020-07-21T00:24:35 | 2020-07-21T00:24:35 | {} | MEMBER |
vuejs | docs | 661,955,714 | 313 | fatony788 | ghuh | 2020-07-21T16:12:22 | 2020-07-21T16:12:22 | {} | NONE |
vuejs | docs | 662,252,897 | 319 | NataliaTepluhina | @kawamataryo thanks for fixing this! 👍🏻 | 2020-07-22T05:40:30 | 2020-07-22T05:40:30 | {
"+1": 1
} | MEMBER |
vuejs | docs | 663,937,419 | 342 | NataliaTepluhina | @joezimdelta thank you for reporting this! Makes sense to me, we will add a note about existing built-in modifiers as well as specify that you can extend this list with custom modifiers 👍🏻 | 2020-07-26T05:22:02 | 2020-07-26T05:22:02 | {} | MEMBER |
vuejs | docs | 664,240,674 | 344 | marina-mosti | Thanks for the feedback @NataliaTepluhina
I've gone ahead and made the changes, with a little rewording of the intro paragraph | 2020-07-27T09:35:37 | 2020-07-27T09:35:37 | {} | COLLABORATOR |
vuejs | docs | 667,552,804 | 335 | skirtles-code | The lifecycle diagram will also need updating:

I believe the change from `outerHTML` to `innerHTML` is a consequence of a larger change to how the mounting element is used. In Vue 2 the eleme... | 2020-08-01T16:03:21 | 2020-08-01T16:03:21 | {} | CONTRIBUTOR |
vuejs | docs | 661,692,115 | 306 | NataliaTepluhina | Thank you for opening the PR! Unfortunately, in this case we meant skimmable not skippable. | 2020-07-21T07:42:01 | 2020-07-21T07:42:01 | {} | MEMBER |
vuejs | docs | 661,767,626 | 308 | NataliaTepluhina | @privatenumber thank you for spotting this! Fixed via https://github.com/vuejs/docs-next/commit/c09d1a54be66a9907218b368a771733a0ef30584 and added a working codepen to prevent confusion 😅 | 2020-07-21T10:13:14 | 2020-07-21T10:13:14 | {} | MEMBER |
vuejs | docs | 662,357,270 | 313 | NataliaTepluhina | @marina-mosti thank you for taking a huge effort for moving this page! It looks great!
Would you mind also adding a sidebar there and keeping the container `max-width: 740px;` (I believe it's a default VuePress one). It looks a bit unpolished w/o sidebar:
<img width="1536" alt="Screenshot 2020-07-22 at 12 45 39" ... | 2020-07-22T09:48:44 | 2020-07-22T09:48:44 | {} | MEMBER |
vuejs | docs | 664,044,689 | 128 | sdras | Just went through all of them! Phew! This is done now @bencodezen and @NataliaTepluhina | 2020-07-26T21:47:44 | 2020-07-26T21:47:44 | {
"hooray": 1
} | MEMBER |
vuejs | docs | 664,483,881 | 343 | NataliaTepluhina | Thanks @bencodezen! Makes sense to me, will add a button 👍🏻 | 2020-07-27T15:59:25 | 2020-07-27T15:59:25 | {
"+1": 1
} | MEMBER |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.