TodoList-Vue
                                
                                
                                
                                    TodoList-Vue copied to clipboard
                            
                            
                            
                        ✔ A simple ToDoList App built with Vue2.
Project setup
Requires node.js
# clone the project
git clone https://github.com/imp2002/TodoList-Vue.git
# enter project directory
cd TodoList-Vue
# install dependencies
npm install
# compiles and hot-reloads for development
npm run serve
Project Layout
.
├── babel.config.js 
├── package.json
├── package-lock.json
├── public
│   ├── favicon.ico
│   └── index.html
├── README.md
├── src
│   ├── App.vue
│   ├── assets
│   │   └── logo.png
│   ├── components
│   │   ├── AppFooter.vue
│   │   ├── AppHeader.vue
│   │   ├── AppItem.vue
│   │   └── AppList.vue
│   └── main.js
└── vue.config.js