A simple Task Tracker made with vue 3 as part of a tutorial I saw to quickly get up on vue.
- Add/Remove Tasks
- Date and Time for Tasks
- Double click on tasks to toggle reminder on/off
You must have Vue installed locally:
# Use sudo if on linux
npm install -g @vue/cli
Install dependencies
npm install
Run this in a separate terminal to start the backend replication:
# starts the backend replicator on port 5000
npm run backend
Then start the application in development mode:
# starts the app on port 8080
npm run serve
npm run build