├── .gitignore ├── README.md ├── babel.config.js ├── package.json ├── public ├── icon-128.png ├── icon-16.png ├── icon-48.png ├── index.html └── manifest.json ├── screenshot.png ├── src ├── App.vue ├── components │ ├── calendar │ │ ├── day.vue │ │ ├── event.vue │ │ └── index.vue │ ├── global │ │ ├── autosize.vue │ │ └── header.vue │ ├── note │ │ ├── index.vue │ │ └── note.vue │ └── task │ │ ├── index.vue │ │ └── task.vue ├── icons │ ├── check.vue │ ├── drag.vue │ ├── plus.vue │ ├── refresh.vue │ └── remove.vue ├── main.js ├── model │ └── index.js ├── store │ ├── dummy-data.js │ └── index.js └── utils │ ├── get-token.js │ └── http-calendar.js ├── vue.config.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/Frame/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/Frame/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: ['@vue/app'] 3 | } 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/Frame/HEAD/package.json -------------------------------------------------------------------------------- /public/icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/Frame/HEAD/public/icon-128.png -------------------------------------------------------------------------------- /public/icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/Frame/HEAD/public/icon-16.png -------------------------------------------------------------------------------- /public/icon-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/Frame/HEAD/public/icon-48.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/Frame/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/Frame/HEAD/public/manifest.json -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/Frame/HEAD/screenshot.png -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/Frame/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/components/calendar/day.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/Frame/HEAD/src/components/calendar/day.vue -------------------------------------------------------------------------------- /src/components/calendar/event.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/Frame/HEAD/src/components/calendar/event.vue -------------------------------------------------------------------------------- /src/components/calendar/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/Frame/HEAD/src/components/calendar/index.vue -------------------------------------------------------------------------------- /src/components/global/autosize.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/Frame/HEAD/src/components/global/autosize.vue -------------------------------------------------------------------------------- /src/components/global/header.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/Frame/HEAD/src/components/global/header.vue -------------------------------------------------------------------------------- /src/components/note/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/Frame/HEAD/src/components/note/index.vue -------------------------------------------------------------------------------- /src/components/note/note.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/Frame/HEAD/src/components/note/note.vue -------------------------------------------------------------------------------- /src/components/task/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/Frame/HEAD/src/components/task/index.vue -------------------------------------------------------------------------------- /src/components/task/task.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/Frame/HEAD/src/components/task/task.vue -------------------------------------------------------------------------------- /src/icons/check.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/Frame/HEAD/src/icons/check.vue -------------------------------------------------------------------------------- /src/icons/drag.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/Frame/HEAD/src/icons/drag.vue -------------------------------------------------------------------------------- /src/icons/plus.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/Frame/HEAD/src/icons/plus.vue -------------------------------------------------------------------------------- /src/icons/refresh.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/Frame/HEAD/src/icons/refresh.vue -------------------------------------------------------------------------------- /src/icons/remove.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/Frame/HEAD/src/icons/remove.vue -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/Frame/HEAD/src/main.js -------------------------------------------------------------------------------- /src/model/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/Frame/HEAD/src/model/index.js -------------------------------------------------------------------------------- /src/store/dummy-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/Frame/HEAD/src/store/dummy-data.js -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/Frame/HEAD/src/store/index.js -------------------------------------------------------------------------------- /src/utils/get-token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/Frame/HEAD/src/utils/get-token.js -------------------------------------------------------------------------------- /src/utils/http-calendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/Frame/HEAD/src/utils/http-calendar.js -------------------------------------------------------------------------------- /vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/Frame/HEAD/vue.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademilter/Frame/HEAD/yarn.lock --------------------------------------------------------------------------------