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

Evan You 4d2fa51347 build: report both gzip and brotli sizes há 6 anos atrás
.circleci 8511237ed9 ci: run tests with ci flags há 6 anos atrás
.github e82db471b3 ci: disable github actions for now (lacks dep caching) há 6 anos atrás
.vscode 132da6c354 chore: editor settings há 7 anos atrás
packages b61d9652dd chore: shorten option name há 6 anos atrás
scripts 4d2fa51347 build: report both gzip and brotli sizes há 6 anos atrás
.gitignore b2d269a651 build: use api-extractor for type rollup há 6 anos atrás
.prettierrc 3401f6b460 init (graduate from prototype) há 7 anos atrás
README.md 62a1bcbab0 chore: update README há 6 anos atrás
api-extractor.json d92d310e0f chore: config comments há 6 anos atrás
jest.config.js 132cef9063 refactor: further tweak compiler layers há 6 anos atrás
lerna.json 3401f6b460 init (graduate from prototype) há 7 anos atrás
package.json 35cb3700b8 build: separate size scripts há 6 anos atrás
rollup.config.js 30e60c0492 chore: tweak size script há 6 anos atrás
tsconfig.json 3b5ef483a9 build: move named char references to json file to speed up build há 6 anos atrás
yarn.lock ad913f8338 build(deps-dev): bump rollup from 1.22.0 to 1.23.0 há 6 anos atrás

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.