Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: vuejs/vue
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.6.13
Choose a base ref
...
head repository: vuejs/vue
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: dev
Choose a head ref
Loading
Showing with 457 additions and 975 deletions.
  1. +1 −9 .github/CONTRIBUTING.md
  2. +3 −501 BACKERS.md
  3. +17 −295 README.md
  4. +3 −3 dist/vue.common.dev.js
  5. +2 −2 dist/vue.common.prod.js
  6. +3 −3 dist/vue.esm.browser.js
  7. +2 −2 dist/vue.esm.browser.min.js
  8. +3 −3 dist/vue.esm.js
  9. +3 −3 dist/vue.js
  10. +2 −2 dist/vue.min.js
  11. +3 −3 dist/vue.runtime.common.dev.js
  12. +2 −2 dist/vue.runtime.common.prod.js
  13. +3 −3 dist/vue.runtime.esm.js
  14. +3 −3 dist/vue.runtime.js
  15. +2 −2 dist/vue.runtime.min.js
  16. +2 −2 examples/todomvc/app.js
  17. +1 −1 package.json
  18. +1 −1 packages/vue-server-renderer/basic.js
  19. +2 −2 packages/vue-server-renderer/build.dev.js
  20. +1 −1 packages/vue-server-renderer/build.prod.js
  21. +38 −5 packages/vue-server-renderer/client-plugin.js
  22. +1 −1 packages/vue-server-renderer/package.json
  23. +45 −12 packages/vue-server-renderer/server-plugin.js
  24. +1 −1 packages/vue-template-compiler/browser.js
  25. +1 −1 packages/vue-template-compiler/package.json
  26. +2 −2 packages/weex-template-compiler/build.js
  27. +3 −3 packages/weex-vue-framework/factory.js
  28. +1 −1 packages/weex-vue-framework/index.js
  29. +1 −1 src/compiler/codegen/index.js
  30. +2 −2 src/core/instance/proxy.js
  31. +1 −1 src/core/instance/state.js
  32. +2 −2 src/core/vdom/helpers/normalize-scoped-slots.js
  33. +1 −1 src/platforms/web/compiler/modules/class.js
  34. +1 −1 src/platforms/web/runtime/index.js
  35. +6 −2 src/platforms/web/runtime/modules/events.js
  36. +1 −1 src/platforms/weex/entry-framework.js
  37. +6 −4 src/server/webpack-plugin/client.js
  38. +12 −9 src/server/webpack-plugin/server.js
  39. +43 −4 src/server/webpack-plugin/util.js
  40. +1 −1 src/shared/util.js
  41. +1 −1 test/ssr/ssr-basic-renderer.spec.js
  42. +29 −1 test/ssr/ssr-string.spec.js
  43. +1 −1 test/unit/features/component/component-async.spec.js
  44. +32 −0 test/unit/features/component/component-keep-alive.spec.js
  45. +1 −1 test/unit/features/component/component-scoped-slot.spec.js
  46. +14 −0 test/unit/features/component/component-slot.spec.js
  47. +33 −0 test/unit/features/directives/class.spec.js
  48. +2 −2 test/unit/features/directives/on.spec.js
  49. +2 −2 test/unit/features/global-api/set-delete.spec.js
  50. +8 −7 types/options.d.ts
  51. +44 −0 types/test/async-component-test.ts
  52. +62 −62 yarn.lock
10 changes: 1 addition & 9 deletions .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -124,15 +124,7 @@ The default test script will do the following: lint with ESLint -> type check wi

## Financial Contribution

As a pure community-driven project without major corporate backing, we also welcome financial contributions via Patreon and OpenCollective.

- [Become a backer or sponsor on Patreon](https://www.patreon.com/evanyou)
- [Become a backer or sponsor on OpenCollective](https://opencollective.com/vuejs)
- [One-time donation via PayPal or crypto-currencies](https://vuejs.org/support-vuejs/#One-time-Donations)

### What's the difference between Patreon and OpenCollective funding?

Funds donated via Patreon go directly to support Evan You's full-time work on Vue.js. Funds donated via OpenCollective are managed with transparent expenses and will be used for compensating work and expenses for core team members or sponsoring community events. Your name/logo will receive proper recognition and exposure by donating on either platform.
As a pure community-driven project without major corporate backing, we also welcome financial contributions via GitHub Sponsors and OpenCollective. Please consult the [Sponsor Page](https://vuejs.org/sponsor/) for more details.

## Credits

Loading