Go to file
2019-10-04 13:08:17 -04:00
.circleci ci: run tests with ci flags 2019-08-24 22:50:29 -04:00
.github ci: disable github actions for now (lacks dep caching) 2019-09-14 15:09:46 -04:00
.vscode chore: editor settings 2018-11-08 18:39:38 -05:00
packages workflow: basic template explorer 2019-10-04 13:08:17 -04:00
scripts workflow: basic template explorer 2019-10-04 13:08:17 -04:00
.gitignore build: use api-extractor for type rollup 2019-09-03 12:16:22 -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 refactor: further tweak compiler layers 2019-09-17 11:57:37 -04:00
lerna.json init (graduate from prototype) 2018-09-19 11:35:38 -04:00
package.json build: separate size scripts 2019-10-02 17:45:02 -04:00
README.md chore: update README 2019-10-04 09:35:29 -04:00
rollup.config.js workflow: basic template explorer 2019-10-04 13:08:17 -04:00
tsconfig.json workflow: basic template explorer 2019-10-04 13:08:17 -04:00
yarn.lock workflow: basic template explorer 2019-10-04 13:08:17 -04: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>
  • Compiler DOM-specific transforms
    • v-on DOM modifiers
    • v-model
    • v-text
    • v-pre
    • v-once
    • v-html
    • v-show

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

Contribution

See Contributing Guide.