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

Evan You 2b178981bc refactor: move isRuntimeCompiled flag into component.ts před 6 roky
.circleci 66ecd8b47f types: setup tests for built d.ts files před 6 roky
.github 4e91b1328d chore: add package dependency graph před 6 roky
.vscode 11d0778f9c workflow: support debug single jest test file in vscode (#360) před 6 roky
packages 2b178981bc refactor: move isRuntimeCompiled flag into component.ts před 6 roky
scripts 136ab753b3 build: adjust esm formats před 6 roky
test-dts 24b4120c21 types: fix dts 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
LICENSE 34989ef7fe chore: license před 6 roky
README.md c9d709cdf3 chore: update readme před 6 roky
api-extractor.json d92d310e0f chore: config comments před 6 roky
jest.config.js 8ffd79c754 fix(compiler-core): handle template root and template v-if as stable fragments před 6 roky
package.json 8ed04ed503 build: release script před 6 roky
rollup.config.js efe39db023 feat(runtime-core): hot module replacement před 6 roky
tsconfig.json 74fd6635ce test(e2e): wip e2e test for todomvc před 6 roky
yarn.lock 8277d131c4 refactor(compiler): downgrade to source-map v6 for sync API 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()

Major TODOs:

  • SFC compiler
  • Server-side rendering

Also note that the current implementation requires native ES2015+ in the runtime environment and does not support IE11 (yet).

Contribution

See Contributing Guide.