Go to file
Evan You 052febc127 feat(compiler): convert text mixed with elements into createVNode calls
This ensures they are tracked as dynamic children when inside blocks.
Also guaruntees compiled vnodes always have vnode children in arrays
so that they can skip normalizeVNode safely in optimized mode.
2019-10-21 15:52:29 -04:00
.circleci ci: check size in CI 2019-10-15 12:02:20 -04:00
.github chore: mention coverage and template-explorer in contribution guide 2019-10-10 22:11:44 -04:00
.vscode chore: format vscode.json (#227) 2019-10-12 10:44:17 -04:00
packages feat(compiler): convert text mixed with elements into createVNode calls 2019-10-21 15:52:29 -04:00
scripts chore: updated error message for not-found fuzzy-matching error (#303) 2019-10-15 17:13:35 -04:00
.gitignore chore: add the yarn error log file to git ignore (#150) 2019-10-09 12:13:54 -04:00
.prettierrc init (graduate from prototype) 2018-09-19 11:35:38 -04:00
api-extractor.json chore: config comments 2019-09-03 12:17:33 -04:00
jest.config.js feat(core): export version (#254) 2019-10-14 15:31:43 -04:00
lerna.json build: sepecify yarn in lerna config (#154) 2019-10-08 11:01:04 -04:00
package.json chore: lint + include tsx files for lint 2019-10-14 15:07:43 -04:00
README.md chore: update readme [ci skip] 2019-10-14 23:12:51 -04:00
rollup.config.js fix: add missing compiler to the full build on Windows (#333) 2019-10-18 13:57:13 -04:00
tsconfig.json test: fix import 2019-10-05 23:20:02 -04:00
yarn.lock build(deps-dev): bump rollup from 1.24.0 to 1.25.1 2019-10-21 07:04:53 +00:00

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:

  • Server-side rendering
  • <keep-alive>
  • <transition>
  • v-show with transition
  • <component :is>

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

Contribution

See Contributing Guide.