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

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