TodoList-Vue icon indicating copy to clipboard operation
TodoList-Vue copied to clipboard

✔ A simple ToDoList App built with Vue2.

prewiew

A simple practice for vue.

Live Demo

CI/CD GitHub license

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