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
- Host: GitHub
- URL: https://github.com/laracasts-jverd/vue-first-steps
- Owner: laracasts-jverd
- Created: 2024-08-20T10:05:23.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-08-22T20:58:56.000Z (10 months ago)
- Last Synced: 2025-01-17T18:30:31.932Z (5 months ago)
- Topics: tailwind, vue3
- Language: JavaScript
- Homepage:
- Size: 14.6 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```