Development
Creating your first component using Vue 3 Composition API.
1 minutes
Run the command
npm create vite@latest
in your directory for projects.Follow the prompts, type your project name and select
Vue
andTypescript
.cd <project name>
npm install
npm install sass
(this is so we can use the SCSS preprocessor)npm run dev
And we’re ready to go!