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

宋铄运 57a94b530d feat(dom): transform + runtime for v-on (#213) 6 年之前
.circleci 37f34c050f ci: frozen-lockfile (#260) 6 年之前
.github 462d5c3477 chore: mention coverage and template-explorer in contribution guide 6 年之前
.vscode b2848b98e5 chore: format vscode.json (#227) 6 年之前
packages 57a94b530d feat(dom): transform + runtime for v-on (#213) 6 年之前
scripts ec05469b1a chore: use Boolean to filter empty (#228) 6 年之前
.gitignore 0478ca4cdb chore: add the yarn error log file to git ignore (#150) 6 年之前
.prettierrc 3401f6b460 init (graduate from prototype) 7 年之前
README.md c7620c1056 chore: update readme status 6 年之前
api-extractor.json d92d310e0f chore: config comments 6 年之前
jest.config.js 13a6c49032 test: exclude template-explorer from coverage 6 年之前
lerna.json 174d13acf0 build: sepecify yarn in lerna config (#154) 6 年之前
package.json 35cb3700b8 build: separate size scripts 6 年之前
rollup.config.js 1baa19aea5 build: use `ES module` format `rollup.config.js` (#259) 6 年之前
tsconfig.json c4f9b6d592 test: fix import 6 年之前
yarn.lock a4090a227c build(deps-dev): bump execa from 2.0.5 to 2.1.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.