├── .browserslistrc ├── .env ├── .eslintrc.js ├── .gitattributes ├── .gitignore ├── README.md ├── babel.config.js ├── jest.config.js ├── package.json ├── public ├── css │ └── task.css ├── favicon.ico ├── img │ └── bg.jpg └── index.html ├── src ├── App.vue ├── assets │ └── logo.png ├── components │ ├── Header.vue │ ├── Modals │ │ ├── CreateSubtask.vue │ │ ├── CreateTask.vue │ │ ├── UpdateSubtask.vue │ │ └── UpdateTask.vue │ └── TaskList.vue ├── main.js ├── mixins │ └── guid.js └── store │ ├── index.js │ └── modules │ ├── all.js │ ├── messages.js │ ├── subtask.js │ └── task.js └── tests └── unit ├── components └── header.spec.js └── taskList.spec.js /.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not dead 4 | -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- 1 | VUE_APP_NAME=Vue Task Manager by Mustafa Çağrı Güven -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafacagri/vue-task-manager/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafacagri/vue-task-manager/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafacagri/vue-task-manager/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafacagri/vue-task-manager/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafacagri/vue-task-manager/HEAD/babel.config.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: '@vue/cli-plugin-unit-jest' 3 | } 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafacagri/vue-task-manager/HEAD/package.json -------------------------------------------------------------------------------- /public/css/task.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafacagri/vue-task-manager/HEAD/public/css/task.css -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafacagri/vue-task-manager/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/img/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafacagri/vue-task-manager/HEAD/public/img/bg.jpg -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafacagri/vue-task-manager/HEAD/public/index.html -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafacagri/vue-task-manager/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafacagri/vue-task-manager/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/components/Header.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafacagri/vue-task-manager/HEAD/src/components/Header.vue -------------------------------------------------------------------------------- /src/components/Modals/CreateSubtask.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafacagri/vue-task-manager/HEAD/src/components/Modals/CreateSubtask.vue -------------------------------------------------------------------------------- /src/components/Modals/CreateTask.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafacagri/vue-task-manager/HEAD/src/components/Modals/CreateTask.vue -------------------------------------------------------------------------------- /src/components/Modals/UpdateSubtask.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafacagri/vue-task-manager/HEAD/src/components/Modals/UpdateSubtask.vue -------------------------------------------------------------------------------- /src/components/Modals/UpdateTask.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafacagri/vue-task-manager/HEAD/src/components/Modals/UpdateTask.vue -------------------------------------------------------------------------------- /src/components/TaskList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafacagri/vue-task-manager/HEAD/src/components/TaskList.vue -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafacagri/vue-task-manager/HEAD/src/main.js -------------------------------------------------------------------------------- /src/mixins/guid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafacagri/vue-task-manager/HEAD/src/mixins/guid.js -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafacagri/vue-task-manager/HEAD/src/store/index.js -------------------------------------------------------------------------------- /src/store/modules/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafacagri/vue-task-manager/HEAD/src/store/modules/all.js -------------------------------------------------------------------------------- /src/store/modules/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafacagri/vue-task-manager/HEAD/src/store/modules/messages.js -------------------------------------------------------------------------------- /src/store/modules/subtask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafacagri/vue-task-manager/HEAD/src/store/modules/subtask.js -------------------------------------------------------------------------------- /src/store/modules/task.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafacagri/vue-task-manager/HEAD/src/store/modules/task.js -------------------------------------------------------------------------------- /tests/unit/components/header.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafacagri/vue-task-manager/HEAD/tests/unit/components/header.spec.js -------------------------------------------------------------------------------- /tests/unit/taskList.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafacagri/vue-task-manager/HEAD/tests/unit/taskList.spec.js --------------------------------------------------------------------------------