https://github.com/sudheerj/vuejs-todolist
TodoList application using VueJS,Vuex, axios and JSON-Server
https://github.com/sudheerj/vuejs-todolist
axios axios-vue element-ui vuejs vuejs-guide vuejs-interview-questions vuejs-todolist vuejs-tutorial vuejs2 vuex
Last synced: 2 months ago
JSON representation
TodoList application using VueJS,Vuex, axios and JSON-Server
- Host: GitHub
- URL: https://github.com/sudheerj/vuejs-todolist
- Owner: sudheerj
- Created: 2018-11-02T01:27:56.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-11-04T16:42:40.000Z (over 6 years ago)
- Last Synced: 2025-02-27T10:37:37.927Z (3 months ago)
- Topics: axios, axios-vue, element-ui, vuejs, vuejs-guide, vuejs-interview-questions, vuejs-todolist, vuejs-tutorial, vuejs2, vuex
- Language: JavaScript
- Homepage:
- Size: 321 KB
- Stars: 8
- Watchers: 3
- Forks: 10
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# vuejs-todolist
This is a Single-page application (SPA) in Vue.js implementing a simple Todo list. The application will maintain a Todo list of activities:
* adding an activity (item to the list),
* updating the activity (toggle status between completed/not completed),
* delete an activity, and
* list all the activities when the page is first loaded or reloaded**Add todo**

**Update status**

**Delete todo**

**List**
## Project setup
```
npm install
```**Start client application:**
```
npm run client:start or npm run serve
```
**Start Server application:**
```
npm run server:start
```**Lints and fixes files:**
```
npm run lint
```**Run your unit tests:**
```
npm run test:unit
```