vue
vue copied to clipboard
This is the repo for Vue 2. For Vue 3, go to https://github.com/vuejs/core
### Version 2.5.13 ### Reproduction link [http://jsfiddle.net/df4Lnuw6/207/](http://jsfiddle.net/df4Lnuw6/207/) ### Steps to reproduce Specify a required prop with a default value: ```js Vue.component('comp', { template: '{{ typeof x }} {{ x }}',...
### Version 2.6.14 ### Reproduction link [https://github.com/hivokas/vue-2-slots-issue](https://github.com/hivokas/vue-2-slots-issue) ### Steps to reproduce 1. Clone the repo 2. Run `npm run serve` 3. Change the value in the text input ### What...
### Version 2.6.11 ### Reproduction link [codesandbox.io](https://codesandbox.io/s/vue-2-x-reactivity-broken-tqogh) ### Steps to reproduce Click the "increment" button ### What is expected? the counter in the #default slot of the Parent should increment...
### Version 2.7.14 ### Reproduction link [github.com](https://github.com/vuejs/vue/blob/main/src/core/observer/dep.ts) ### Steps to reproduce There is no ### What is expected? const subs = this.subs.filter(s => s) as DepTarget[] if (subs.length === 0)...
### Version 2.6.11 ### Reproduction link The reproduction is updated to use Vue SSR without NUXT [https://github.com/privatenumber/vue-ssr-vhtml-dyncomp-bug](https://github.com/privatenumber/vue-ssr-vhtml-dyncomp-bug) ### Steps to reproduce _Dynamic.vue_ ```vue content necessary ``` _App.vue_ ```vue ``` ###...
### Version 2.7.14 ### Reproduction link [codesandbox.io](https://codesandbox.io/s/hungry-kate-c73ovu?file=/src/App.vue) ### Steps to reproduce Using the Composition API, provide a value and then inject it in the same component. ### What is expected?...
### Version 2.7.14 ### Reproduction link [github.com](https://github.com/ahumellihuk/reproducer-vue-2.7.14-provide-inject) ### Steps to reproduce 1. Checkout repo, install NPM dependencies, run app in dev mode. 2. Repeatedly press the main button on screen...
**What kind of change does this PR introduce?** (check at least one) - [ ] Bugfix - [x] Feature - [ ] Code style update - [ ] Refactor -...
### Version 2.7.14 ### Reproduction link [stackblitz.com](https://stackblitz.com/edit/vitejs-vite-h39th6?file=package.json,main.js&terminal=start) ### Steps to reproduce Run `main.js` in the reproduction link ### What is expected? Each render in that reproduction would work ### What...
Based on #1961. It wasn't possible to specify a required prop of type object and pass null as the value **What kind of change does this PR introduce?** (check at...