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

Evan You 1b9bd6912e perf: v-for fragments do not need to track dynamicChildren vor 6 Jahren
.circleci eb28d45933 ci: check size in CI vor 6 Jahren
.github 462d5c3477 chore: mention coverage and template-explorer in contribution guide vor 6 Jahren
.vscode b2848b98e5 chore: format vscode.json (#227) vor 6 Jahren
packages 1b9bd6912e perf: v-for fragments do not need to track dynamicChildren vor 6 Jahren
scripts b60355d857 chore: updated error message for not-found fuzzy-matching error (#303) vor 6 Jahren
.gitignore 0478ca4cdb chore: add the yarn error log file to git ignore (#150) vor 6 Jahren
.prettierrc 3401f6b460 init (graduate from prototype) vor 7 Jahren
README.md ebaa87dfcb chore: update readme [ci skip] vor 6 Jahren
api-extractor.json d92d310e0f chore: config comments vor 6 Jahren
jest.config.js fd209f5a66 feat(core): export version (#254) vor 6 Jahren
lerna.json 174d13acf0 build: sepecify yarn in lerna config (#154) vor 6 Jahren
package.json 37cbd0098d chore: lint + include tsx files for lint vor 6 Jahren
rollup.config.js 58fcd15000 fix: add missing compiler to the full build on Windows (#333) vor 6 Jahren
tsconfig.json c4f9b6d592 test: fix import vor 6 Jahren
yarn.lock 65bd838cb8 build(deps-dev): bump rollup from 1.24.0 to 1.25.1 vor 6 Jahren

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.