├── .gitignore ├── README.md ├── icon └── img@2x.png ├── index.html ├── main ├── browserWindow.ts ├── countDown.ts ├── index.ts ├── setting.ts ├── store.json ├── tary.ts └── utils.ts ├── package.json ├── public ├── favicon.ico ├── rest.png ├── setting.png └── tips.png ├── scripts ├── createShell.js └── dev.js ├── src ├── App.vue ├── assets │ ├── bg.jpg │ └── logo.png ├── main.js ├── route.js └── views │ ├── LockPage.vue │ ├── Setting.vue │ └── Tips.vue ├── tsconfig.json ├── vite.config.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei4519/remind-rest/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # remind-rest 2 | electron + ts +vue3 实现定时提醒软件⏰ 3 | -------------------------------------------------------------------------------- /icon/img@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei4519/remind-rest/HEAD/icon/img@2x.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei4519/remind-rest/HEAD/index.html -------------------------------------------------------------------------------- /main/browserWindow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei4519/remind-rest/HEAD/main/browserWindow.ts -------------------------------------------------------------------------------- /main/countDown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei4519/remind-rest/HEAD/main/countDown.ts -------------------------------------------------------------------------------- /main/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei4519/remind-rest/HEAD/main/index.ts -------------------------------------------------------------------------------- /main/setting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei4519/remind-rest/HEAD/main/setting.ts -------------------------------------------------------------------------------- /main/store.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei4519/remind-rest/HEAD/main/store.json -------------------------------------------------------------------------------- /main/tary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei4519/remind-rest/HEAD/main/tary.ts -------------------------------------------------------------------------------- /main/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei4519/remind-rest/HEAD/main/utils.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei4519/remind-rest/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei4519/remind-rest/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/rest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei4519/remind-rest/HEAD/public/rest.png -------------------------------------------------------------------------------- /public/setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei4519/remind-rest/HEAD/public/setting.png -------------------------------------------------------------------------------- /public/tips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei4519/remind-rest/HEAD/public/tips.png -------------------------------------------------------------------------------- /scripts/createShell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei4519/remind-rest/HEAD/scripts/createShell.js -------------------------------------------------------------------------------- /scripts/dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei4519/remind-rest/HEAD/scripts/dev.js -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei4519/remind-rest/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei4519/remind-rest/HEAD/src/assets/bg.jpg -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei4519/remind-rest/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei4519/remind-rest/HEAD/src/main.js -------------------------------------------------------------------------------- /src/route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei4519/remind-rest/HEAD/src/route.js -------------------------------------------------------------------------------- /src/views/LockPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei4519/remind-rest/HEAD/src/views/LockPage.vue -------------------------------------------------------------------------------- /src/views/Setting.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei4519/remind-rest/HEAD/src/views/Setting.vue -------------------------------------------------------------------------------- /src/views/Tips.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei4519/remind-rest/HEAD/src/views/Tips.vue -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei4519/remind-rest/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | outDir: 'dist/renderer' 3 | } -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lei4519/remind-rest/HEAD/yarn.lock --------------------------------------------------------------------------------