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

terencez ff68db46ea fix(reactivity): avoid triggering effect when deleting property returns false (#168) 6 ani în urmă
.circleci 8511237ed9 ci: run tests with ci flags 6 ani în urmă
.github 7c4eea6048 docs: add missing --all argument to contributing.md (#121) 6 ani în urmă
.vscode 132da6c354 chore: editor settings 7 ani în urmă
packages ff68db46ea fix(reactivity): avoid triggering effect when deleting property returns false (#168) 6 ani în urmă
scripts 0fe8801782 docs: fix 'commit message convention' link (#95) 6 ani în urmă
.gitignore b2d269a651 build: use api-extractor for type rollup 6 ani în urmă
.prettierrc 3401f6b460 init (graduate from prototype) 7 ani în urmă
README.md 62a1bcbab0 chore: update README 6 ani în urmă
api-extractor.json d92d310e0f chore: config comments 6 ani în urmă
jest.config.js 5c4478b00b chore(jest): ignore node_modules from watched files (#162) 6 ani în urmă
lerna.json 174d13acf0 build: sepecify yarn in lerna config (#154) 6 ani în urmă
package.json 35cb3700b8 build: separate size scripts 6 ani în urmă
rollup.config.js 5bc18f46c6 chore: fix typo in rollup.config.js (#122) 6 ani în urmă
tsconfig.json c4f9b6d592 test: fix import 6 ani în urmă
yarn.lock ff0f3bdf7c build(deps-dev): bump lerna from 3.16.4 to 3.16.5 6 ani în urmă

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.