Vue quickstart options from the Vue 3 repo.

CDN

As in my vue-frontend-quickstart app.

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

Playground

In-browser playground on Codepen.

Vite

Scaffold via vite:

$ npm init @vitejs/app
$ # OR
$ yarn create @vitejs/app

$ # select vue template

Vue CLI

Scaffold via vue-cli:

$ npm install -g @vue/cli
$ # OR
$ yarn global add @vue/cli

$ vue create hello-vue3

Select Vue 3 preset using the tool.

See more info in the Install cheatsheet.