You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
2.8 KiB

6 years ago
6 years ago
  1. # vue-next [![CircleCI](https://circleci.com/gh/vuejs/vue-next.svg?style=svg&circle-token=fb883a2d0a73df46e80b2e79fd430959d8f2b488)](https://circleci.com/gh/vuejs/vue-next)
  2. ## Status: Beta.
  3. - All planned RFCs have been merged.
  4. - All [merged RFCs](https://github.com/vuejs/rfcs/pulls?q=is%3Apr+is%3Amerged+label%3A3.x) have been implemented.
  5. - Vue CLI now has experimental support via [vue-cli-plugin-vue-next](https://github.com/vuejs/vue-cli-plugin-vue-next).
  6. - There is also a simple plain webpack-based setup with Single-File Component support available [here](https://github.com/vuejs/vue-next-webpack-preview).
  7. Please note that there could still be undocumented behavior inconsistencies with 2.x. When you run into such a case, please make sure to first check if the behavior difference has already been proposed in an existing RFC. If the inconsistency is not part of an RFC, then it's likely unintended, and an issue should be opened (please make sure to use the [issue helper](https://new-issue.vuejs.org/?repo=vuejs/vue-next) when opening new issues).
  8. In addition, the current implementation requires native ES2015+ in the runtime environment and does not support IE11 (yet). The IE11 compatible build will be worked on after we have reached RC stage.
  9. ## Official Libraries Vue 3 Support Status
  10. | Project | Status |
  11. |---------|--------|
  12. | vue-router | Alpha [[Proposed RFCs][router-rfcs]] [[GitHub][router-code]] [[npm][router-npm]] |
  13. | vuex | Beta, with same API [[GitHub][vuex-code]] [[npm][vuex-npm]] |
  14. | vue-class-component | Alpha [[Github][vcc-code]] [[npm][vcc-npm]] |
  15. | vue-cli | Experimental support via [vue-cli-plugin-vue-next][cli] |
  16. | eslint-plugin-vue | Alpha [[Github][epv-code]] [[npm][epv-npm]] |
  17. | vue-test-utils | Alpha [[Github][vtu-code]] [[npm][vtu-npm]] |
  18. | vue-devtools | WIP |
  19. | jsx | WIP |
  20. [router-code]: https://github.com/vuejs/vue-router-next
  21. [router-rfcs]: https://github.com/vuejs/rfcs/pulls?q=is%3Apr+is%3Aopen+label%3Arouter
  22. [router-npm]: https://unpkg.com/vue-router@next/
  23. [vuex-code]: https://github.com/vuejs/vuex/tree/4.0
  24. [vuex-npm]: https://unpkg.com/vuex@next/
  25. [cli]: https://github.com/vuejs/vue-cli-plugin-vue-next
  26. [vue-loader-code]: https://github.com/vuejs/vue-loader/tree/next
  27. [vue-loader-npm]: https://unpkg.com/vue-loader@next/
  28. [vcc-code]: https://github.com/vuejs/vue-class-component/tree/next
  29. [vcc-npm]: https://unpkg.com/vue-class-component@next/
  30. [vtu-code]: https://github.com/vuejs/vue-test-utils-next
  31. [vtu-npm]: https://www.npmjs.com/package/@vue/test-utils
  32. [epv-code]: https://github.com/vuejs/eslint-plugin-vue
  33. [epv-npm]: https://unpkg.com/browse/eslint-plugin-vue@7.0.0-alpha.0/
  34. [vue-devtools]: https://github.com/vuejs/vue-devtools
  35. ## Contribution
  36. See [Contributing Guide](https://github.com/vuejs/vue-next/blob/master/.github/contributing.md).