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

Evan You fc5b2964de types: fix dts reliance on @vue/shared 6 years ago
.circleci eb28d45933 ci: check size in CI 6 years ago
.github f56a159ea5 chore: fix typo [ci skip] (#413) 6 years ago
.vscode 11d0778f9c workflow: support debug single jest test file in vscode (#360) 6 years ago
packages fc5b2964de types: fix dts reliance on @vue/shared 6 years ago
scripts 8325f2de2a build: fix build script 6 years ago
.gitignore 0478ca4cdb chore: add the yarn error log file to git ignore (#150) 6 years ago
.prettierrc 3401f6b460 init (graduate from prototype) 7 years ago
LICENSE 34989ef7fe chore: license 6 years ago
README.md 5a4384d80d chore: mark keep-alive done [ci skip] 6 years ago
api-extractor.json d92d310e0f chore: config comments 6 years ago
jest.config.js fd209f5a66 feat(core): export version (#254) 6 years ago
lerna.json 174d13acf0 build: sepecify yarn in lerna config (#154) 6 years ago
package.json 47d3356f31 build(deps-dev): bump @types/jest 6 years ago
rollup.config.js 58fcd15000 fix: add missing compiler to the full build on Windows (#333) 6 years ago
tsconfig.json c4f9b6d592 test: fix import 6 years ago
yarn.lock 47d3356f31 build(deps-dev): bump @types/jest 6 years ago

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.