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

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.