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

Evan You 62a1bcbab0 chore: update README пре 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 b61d9652dd chore: shorten option name пре 6 година
scripts c0bf341748 build: fix dev script пре 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 30e60c0492 chore: tweak size script пре 6 година
tsconfig.json 3b5ef483a9 build: move named char references to json file to speed up build пре 6 година
yarn.lock ad913f8338 build(deps-dev): bump rollup from 1.22.0 to 1.23.0 пре 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.