[Vue3] Getting to know Vue3 for the first time

Quick start with Vue3

1. Introduction to Vue3

  • On September 18, 2020, Vue.js released version 3.0, codename: One Piece (One Piece)
  • It took more than 2 years, 2600+ submissions , 30+ RFCs , 600+ PRs , 99 contributors
  • Tags address on github: https://github.com/vuejs/vue-next/releases/tag/v3.0.0

2. What does Vue3 bring

1. Performance improvement

  • 41% reduction in bundle size

  • 55% faster initial render, 133% faster update render

  • 54% less memory

2. Source code upgrade

  • Use Proxy instead of defineProperty to achieve responsiveness

  • Rewrite the implementation of virtual DOM and Tree-Shaking

Guess you like

Origin blog.csdn.net/Komorebi_00/article/details/131454697