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

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

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**
![table](screenshots/add.png)
**Update status**
![table](screenshots/update.png)
**Delete todo**
![table](screenshots/delete.png)
**List**
![table](screenshots/list.png)

## 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
```