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

Evan You f7a7e8d71d refactor(parser): remove ignoreSpaces option před 6 roky
.circleci eb28d45933 ci: check size in CI před 6 roky
.github 462d5c3477 chore: mention coverage and template-explorer in contribution guide před 6 roky
.vscode 11d0778f9c workflow: support debug single jest test file in vscode (#360) před 6 roky
packages f7a7e8d71d refactor(parser): remove ignoreSpaces option před 6 roky
scripts 11d0778f9c workflow: support debug single jest test file in vscode (#360) před 6 roky
.gitignore 0478ca4cdb chore: add the yarn error log file to git ignore (#150) před 6 roky
.prettierrc 3401f6b460 init (graduate from prototype) před 7 roky
README.md ebaa87dfcb chore: update readme [ci skip] před 6 roky
api-extractor.json d92d310e0f chore: config comments před 6 roky
jest.config.js fd209f5a66 feat(core): export version (#254) před 6 roky
lerna.json 174d13acf0 build: sepecify yarn in lerna config (#154) před 6 roky
package.json af57ad110f chore: revert prettier před 6 roky
rollup.config.js 58fcd15000 fix: add missing compiler to the full build on Windows (#333) před 6 roky
tsconfig.json c4f9b6d592 test: fix import před 6 roky
yarn.lock fad691de9d build(deps-dev): bump rollup from 1.25.1 to 1.25.2 před 6 roky

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>
  • v-show with transition
  • <component :is>

The current implementation also requires native ES2015+ in the runtime environment and does not support IE11 (yet).

Contribution

See Contributing Guide.