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

Dmitry Sharshakov fd209f5a66 feat(core): export version (#254) 6 years ago
.circleci c0adcb5669 ci: add step name (#279) 6 years ago
.github 462d5c3477 chore: mention coverage and template-explorer in contribution guide 6 years ago
.vscode b2848b98e5 chore: format vscode.json (#227) 6 years ago
packages fd209f5a66 feat(core): export version (#254) 6 years ago
scripts 82b5978e9c build: further shave off runtime compile only code 6 years ago
.gitignore 0478ca4cdb chore: add the yarn error log file to git ignore (#150) 6 years ago
.prettierrc 3401f6b460 init (graduate from prototype) 7 years ago
README.md c7620c1056 chore: update readme status 6 years ago
api-extractor.json d92d310e0f chore: config comments 6 years ago
jest.config.js fd209f5a66 feat(core): export version (#254) 6 years ago
lerna.json 174d13acf0 build: sepecify yarn in lerna config (#154) 6 years ago
package.json 37cbd0098d chore: lint + include tsx files for lint 6 years ago
rollup.config.js fd209f5a66 feat(core): export version (#254) 6 years ago
tsconfig.json c4f9b6d592 test: fix import 6 years ago
yarn.lock a4090a227c build(deps-dev): bump execa from 2.0.5 to 2.1.0 6 years ago

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.