Go to file
2021-06-07 12:34:08 -04:00
.github ci: move to github actions / remove circleci config 2021-05-07 10:00:12 -04:00
.vscode workflow: cross platform vscode jest debugging (#414) 2020-06-12 10:34:31 -04:00
packages chore: update compat build readme [ci skip] 2021-06-07 12:34:08 -04:00
scripts chore: log runtime build file size 2021-04-07 16:19:25 -04:00
test-dts types(props): Support undefined as default (#3783) 2021-05-17 14:04:31 -04:00
.eslintrc.js wip: initial compat build setup 2021-04-07 16:19:24 -04:00
.gitignore chore: add the yarn error log file to git ignore (#150) 2019-10-09 12:13:54 -04:00
.prettierrc init (graduate from prototype) 2018-09-19 11:35:38 -04:00
api-extractor.json feat(types): adjust type exports for manual render function and tooling usage 2020-06-10 14:57:21 -04:00
CHANGELOG.md release: v3.1.0-beta.7 2021-06-02 16:12:54 -04:00
jest.config.js chore: ignore compat entries for coverage 2021-04-30 18:15:36 -04:00
LICENSE chore: license 2019-10-28 11:15:17 -04:00
package.json release: v3.1.0-beta.7 2021-06-02 16:12:54 -04:00
README.md chore: update build status badge [ci skip] 2021-05-07 10:05:01 -04:00
rollup.config.js build: fix compat build type treatment 2021-05-08 16:21:06 -04:00
tsconfig.json wip: basic compat test 2021-04-07 16:19:24 -04:00
yarn.lock chore: bump api-extractor from 7.12.1 to 7.15.1 (#3745) 2021-05-12 17:54:08 -04:00

vue-next npm build status

This is the repository for Vue 3.0.

Quickstart

  • Via CDN: <script src="https://unpkg.com/vue@next"></script>

  • In-browser playground on Codepen

  • Scaffold via Vite:

    # npm
    npm init @vitejs/app
    # yarn
    yarn create @vitejs/app
    # select vue template
    
  • Scaffold via vue-cli:

    npm install -g @vue/cli # OR yarn global add @vue/cli
    vue create hello-vue3
    # select vue 3 preset
    

Changes from Vue 2

Please consult the Migration Guide.

Also note: Vue 3 does not support IE11 (RFC | Discussion).

Supporting Libraries

All of our official libraries and tools now support Vue 3, but most of them are still in beta status and distributed under the next dist tag on NPM. We are planning to stabilize and switch all projects to use the latest dist tag in early 2021.

Vue CLI

As of v4.5.0, vue-cli now provides built-in option to choose Vue 3 preset when creating a new project. You can upgrade vue-cli and run vue create to create a Vue 3 project today.

Vue Router

Vue Router 4.0 provides Vue 3 support and has a number of breaking changes of its own. Check out its Migration Guide for full details.

Vuex

Vuex 4.0 provides Vue 3 support with largely the same API as 3.x. The only breaking change is how the plugin is installed.

Devtools Extension

We are working on a new version of the Devtools with a new UI and refactored internals to support multiple Vue versions. The new version is currently in beta and only supports Vue 3 (for now). Vuex and Router integration is also work in progress.

IDE Support

It is recommended to use VSCode. There are currently two viable extensions for Single-File Components (SFCs) support:

  • Vetur (recommended if you are used to Vetur features)
  • Volar (recommended if using TypeScript with SFCs, or <script setup> syntax)

TypeScript Support

  • All Vue 3 packages ship with types.
  • vue-tsc perform TypeScript type checks / diagnostics on Vue SFCs via the command line.
  • vue-dts-gen: generate TypeScript definitions from Vue SFCs.

Other Projects

Project NPM Repo
@vue/babel-plugin-jsx rc [GitHub]
eslint-plugin-vue stable [GitHub]
@vue/test-utils beta [GitHub]
vue-class-component beta [GitHub]
vue-loader beta [GitHub]
rollup-plugin-vue beta [GitHub]