Skip to content

Commit

Permalink
fix: Vue 3.x targets ES2016+, not ES2015 (#3100)
Browse files Browse the repository at this point in the history
  • Loading branch information
haoqunjiang authored Nov 19, 2024
1 parent 0773ed4 commit 0d6ad76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/about/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Vue is a free and open source project released under the [MIT License](https://o

## What browsers does Vue support? {#what-browsers-does-vue-support}

The latest version of Vue (3.x) only supports [browsers with native ES2015 support](https://caniuse.com/es6). This excludes IE11. Vue 3.x uses ES2015 features that cannot be polyfilled in legacy browsers, so if you need to support legacy browsers, you will need to use Vue 2.x instead.
The latest version of Vue (3.x) only supports [browsers with native ES2016 support](https://caniuse.com/es2016). This excludes IE11. Vue 3.x uses ES2016 features that cannot be polyfilled in legacy browsers, so if you need to support legacy browsers, you will need to use Vue 2.x instead.

## Is Vue reliable? {#is-vue-reliable}

Expand Down

0 comments on commit 0d6ad76

Please sign in to comment.