🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

Evan You a0f442f1d4 workflow: include commit link in template explorer 6 lat temu
.circleci 8511237ed9 ci: run tests with ci flags 6 lat temu
.github e82db471b3 ci: disable github actions for now (lacks dep caching) 6 lat temu
.vscode 132da6c354 chore: editor settings 7 lat temu
packages a0f442f1d4 workflow: include commit link in template explorer 6 lat temu
scripts a0f442f1d4 workflow: include commit link in template explorer 6 lat temu
.gitignore b2d269a651 build: use api-extractor for type rollup 6 lat temu
.prettierrc 3401f6b460 init (graduate from prototype) 7 lat temu
README.md 62a1bcbab0 chore: update README 6 lat temu
api-extractor.json d92d310e0f chore: config comments 6 lat temu
jest.config.js 132cef9063 refactor: further tweak compiler layers 6 lat temu
lerna.json 3401f6b460 init (graduate from prototype) 7 lat temu
package.json 35cb3700b8 build: separate size scripts 6 lat temu
rollup.config.js a0f442f1d4 workflow: include commit link in template explorer 6 lat temu
tsconfig.json 8d49b97cc3 build: include main vue package in aliases and tsconfig paths 6 lat temu
yarn.lock 5047bc8dbe workflow: basic template explorer 6 lat temu

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:

  • 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.