Go to file
Evan You 61d8941692 types(reactivity): ref type should not expose _isRef 2019-11-08 13:29:43 -05:00
.circleci
.github
.vscode
packages types(reactivity): ref type should not expose _isRef 2019-11-08 13:29:43 -05:00
scripts build: only remove dist directory when building all formats 2019-11-06 15:23:50 -05:00
test-dts
.gitignore
.prettierrc
LICENSE
README.md
api-extractor.json
jest.config.js
lerna.json
package.json build(deps-dev): bump TS to 3.7 2019-11-05 17:37:16 -05:00
rollup.config.js feat: (wip) setup compiler-sfc 2019-11-06 21:58:15 -05:00
tsconfig.json
yarn.lock build(deps-dev): bump lerna from 3.18.3 to 3.18.4 2019-11-08 07:32:46 +00:00

README.md

vue-next CircleCI

Status: Pre-Alpha.

We have achieved most of the architectural goals and new features planned for v3:

  • Compiler

    • Modular architecture
    • "Block tree" optimization
    • More aggressive static tree hoisting
    • Source map support
    • Built-in identifier prefixing (aka "stripWith")
    • Built-in pretty-printing
    • Lean ~10kb brotli-compressed browser build after dropping source map and identifier prefixing
  • Runtime

    • Significantly faster
    • Simultaneous Composition API + Options API support, with typings
    • Proxy-based change detection
    • Fragments
    • Portals
    • Suspense w/ async setup()

However, there are still some 2.x parity features not completed yet:

  • <transition>
  • v-show with transition
  • Server-side rendering

The current implementation also requires native ES2015+ in the runtime environment and does not support IE11 (yet).

Contribution

See Contributing Guide.