An open API service indexing awesome lists of open source software.

https://github.com/laracasts-jverd/vue-first-steps

Vue3 using options API
https://github.com/laracasts-jverd/vue-first-steps

tailwind vue3

Last synced: 3 months ago
JSON representation

Vue3 using options API

Awesome Lists containing this project

README

        

# Task manager

Initialize project
```sh
npm i # install dependencies
```

Run project
```sh
npm run start
# OR
npx serve # run the frontend on http://localhost:3000
npx json-server --watch db.json --port 3001 # run a fake API
```