├── .github └── workflows │ ├── build.yaml │ └── deploy.yaml ├── .gitignore ├── .prettierrc.json ├── LICENSE ├── PRIVACY.md ├── README.md ├── SECURITY.md ├── backend ├── .gitignore ├── api.go ├── auth.go ├── config.example.yaml ├── connection.go ├── github.go ├── go.mod ├── go.sum ├── main.go ├── middleware.go ├── storage.go └── utils.go ├── env.d.ts ├── index.html ├── package.json ├── pnpm-lock.yaml ├── public ├── background.webp ├── background │ ├── forest.webp │ ├── hills.webp │ ├── lake.webp │ ├── morning.webp │ ├── mountain.webp │ ├── ocean.webp │ ├── snow.webp │ └── sunshine.webp ├── beian.webp ├── favicon.ico ├── icon.png └── tool │ ├── add.svg │ ├── cloudflare.svg │ ├── codepen.svg │ ├── convert.svg │ ├── github.svg │ ├── jsdelivr.svg │ ├── kaggle.svg │ ├── lightnotes.ico │ ├── openai.svg │ ├── readthedocs.svg │ ├── replit.svg │ ├── stackoverflow.svg │ ├── twitter.svg │ ├── unknown.svg │ └── vercel.svg ├── screenshot ├── customize.png ├── engine.png ├── i18n.png ├── main.png ├── search.png └── settings.png ├── src ├── App.vue ├── assets │ ├── script │ │ ├── auth.ts │ │ ├── card │ │ │ ├── calendar.ts │ │ │ ├── github.ts │ │ │ └── weather.ts │ │ ├── config.ts │ │ ├── connection.ts │ │ ├── engine.ts │ │ ├── openai.ts │ │ ├── shared.ts │ │ ├── storage.ts │ │ ├── tool.ts │ │ └── utils │ │ │ ├── base.ts │ │ │ ├── scroll.ts │ │ │ ├── service.ts │ │ │ └── typing.ts │ └── style │ │ ├── base.css │ │ ├── card │ │ └── weather.css │ │ └── engine.css ├── components │ ├── About.vue │ ├── AutoUpdater.vue │ ├── Background.vue │ ├── CardContainer.vue │ ├── InputBox.vue │ ├── Quote.vue │ ├── SettingWindow.vue │ ├── TimeWidget.vue │ ├── ToolBox.vue │ ├── cards │ │ ├── DateCard.vue │ │ ├── GithubCard.vue │ │ └── WeatherCard.vue │ ├── compositions │ │ ├── Checkbox.vue │ │ ├── Cover.vue │ │ ├── Notification.vue │ │ ├── Suggestion.vue │ │ ├── Tool.vue │ │ └── Window.vue │ └── icons │ │ ├── box.vue │ │ ├── chat.vue │ │ ├── check.vue │ │ ├── clock.vue │ │ ├── close.vue │ │ ├── cursor.vue │ │ ├── delete.vue │ │ ├── edit.vue │ │ ├── github.vue │ │ ├── info.vue │ │ ├── international.vue │ │ ├── loader.vue │ │ ├── note.vue │ │ ├── openai.vue │ │ ├── qq.vue │ │ ├── search.vue │ │ ├── settings.vue │ │ └── star.vue ├── i18n │ ├── engine.ts │ └── index.ts ├── main.ts └── types │ ├── calendar.d.ts │ ├── pwa.d.ts │ └── vue.d.ts ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.github/workflows/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/.github/workflows/deploy.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/LICENSE -------------------------------------------------------------------------------- /PRIVACY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/PRIVACY.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/SECURITY.md -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- 1 | *.exe 2 | fystart 3 | config.yaml 4 | -------------------------------------------------------------------------------- /backend/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/backend/api.go -------------------------------------------------------------------------------- /backend/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/backend/auth.go -------------------------------------------------------------------------------- /backend/config.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/backend/config.example.yaml -------------------------------------------------------------------------------- /backend/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/backend/connection.go -------------------------------------------------------------------------------- /backend/github.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/backend/github.go -------------------------------------------------------------------------------- /backend/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/backend/go.mod -------------------------------------------------------------------------------- /backend/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/backend/go.sum -------------------------------------------------------------------------------- /backend/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/backend/main.go -------------------------------------------------------------------------------- /backend/middleware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/backend/middleware.go -------------------------------------------------------------------------------- /backend/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/backend/storage.go -------------------------------------------------------------------------------- /backend/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/backend/utils.go -------------------------------------------------------------------------------- /env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /public/background.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/public/background.webp -------------------------------------------------------------------------------- /public/background/forest.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/public/background/forest.webp -------------------------------------------------------------------------------- /public/background/hills.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/public/background/hills.webp -------------------------------------------------------------------------------- /public/background/lake.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/public/background/lake.webp -------------------------------------------------------------------------------- /public/background/morning.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/public/background/morning.webp -------------------------------------------------------------------------------- /public/background/mountain.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/public/background/mountain.webp -------------------------------------------------------------------------------- /public/background/ocean.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/public/background/ocean.webp -------------------------------------------------------------------------------- /public/background/snow.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/public/background/snow.webp -------------------------------------------------------------------------------- /public/background/sunshine.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/public/background/sunshine.webp -------------------------------------------------------------------------------- /public/beian.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/public/beian.webp -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/public/icon.png -------------------------------------------------------------------------------- /public/tool/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/public/tool/add.svg -------------------------------------------------------------------------------- /public/tool/cloudflare.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/public/tool/cloudflare.svg -------------------------------------------------------------------------------- /public/tool/codepen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/public/tool/codepen.svg -------------------------------------------------------------------------------- /public/tool/convert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/public/tool/convert.svg -------------------------------------------------------------------------------- /public/tool/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/public/tool/github.svg -------------------------------------------------------------------------------- /public/tool/jsdelivr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/public/tool/jsdelivr.svg -------------------------------------------------------------------------------- /public/tool/kaggle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/public/tool/kaggle.svg -------------------------------------------------------------------------------- /public/tool/lightnotes.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/public/tool/lightnotes.ico -------------------------------------------------------------------------------- /public/tool/openai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/public/tool/openai.svg -------------------------------------------------------------------------------- /public/tool/readthedocs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/public/tool/readthedocs.svg -------------------------------------------------------------------------------- /public/tool/replit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/public/tool/replit.svg -------------------------------------------------------------------------------- /public/tool/stackoverflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/public/tool/stackoverflow.svg -------------------------------------------------------------------------------- /public/tool/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/public/tool/twitter.svg -------------------------------------------------------------------------------- /public/tool/unknown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/public/tool/unknown.svg -------------------------------------------------------------------------------- /public/tool/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/public/tool/vercel.svg -------------------------------------------------------------------------------- /screenshot/customize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/screenshot/customize.png -------------------------------------------------------------------------------- /screenshot/engine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/screenshot/engine.png -------------------------------------------------------------------------------- /screenshot/i18n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/screenshot/i18n.png -------------------------------------------------------------------------------- /screenshot/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/screenshot/main.png -------------------------------------------------------------------------------- /screenshot/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/screenshot/search.png -------------------------------------------------------------------------------- /screenshot/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/screenshot/settings.png -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/script/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/src/assets/script/auth.ts -------------------------------------------------------------------------------- /src/assets/script/card/calendar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/src/assets/script/card/calendar.ts -------------------------------------------------------------------------------- /src/assets/script/card/github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/src/assets/script/card/github.ts -------------------------------------------------------------------------------- /src/assets/script/card/weather.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/src/assets/script/card/weather.ts -------------------------------------------------------------------------------- /src/assets/script/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/src/assets/script/config.ts -------------------------------------------------------------------------------- /src/assets/script/connection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/src/assets/script/connection.ts -------------------------------------------------------------------------------- /src/assets/script/engine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/src/assets/script/engine.ts -------------------------------------------------------------------------------- /src/assets/script/openai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/src/assets/script/openai.ts -------------------------------------------------------------------------------- /src/assets/script/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/src/assets/script/shared.ts -------------------------------------------------------------------------------- /src/assets/script/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/src/assets/script/storage.ts -------------------------------------------------------------------------------- /src/assets/script/tool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/src/assets/script/tool.ts -------------------------------------------------------------------------------- /src/assets/script/utils/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/src/assets/script/utils/base.ts -------------------------------------------------------------------------------- /src/assets/script/utils/scroll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/src/assets/script/utils/scroll.ts -------------------------------------------------------------------------------- /src/assets/script/utils/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/src/assets/script/utils/service.ts -------------------------------------------------------------------------------- /src/assets/script/utils/typing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/src/assets/script/utils/typing.ts -------------------------------------------------------------------------------- /src/assets/style/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/src/assets/style/base.css -------------------------------------------------------------------------------- /src/assets/style/card/weather.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/src/assets/style/card/weather.css -------------------------------------------------------------------------------- /src/assets/style/engine.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/src/assets/style/engine.css -------------------------------------------------------------------------------- /src/components/About.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/src/components/About.vue -------------------------------------------------------------------------------- /src/components/AutoUpdater.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/src/components/AutoUpdater.vue -------------------------------------------------------------------------------- /src/components/Background.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/src/components/Background.vue -------------------------------------------------------------------------------- /src/components/CardContainer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/src/components/CardContainer.vue -------------------------------------------------------------------------------- /src/components/InputBox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/src/components/InputBox.vue -------------------------------------------------------------------------------- /src/components/Quote.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/src/components/Quote.vue -------------------------------------------------------------------------------- /src/components/SettingWindow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/src/components/SettingWindow.vue -------------------------------------------------------------------------------- /src/components/TimeWidget.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/src/components/TimeWidget.vue -------------------------------------------------------------------------------- /src/components/ToolBox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/src/components/ToolBox.vue -------------------------------------------------------------------------------- /src/components/cards/DateCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/src/components/cards/DateCard.vue -------------------------------------------------------------------------------- /src/components/cards/GithubCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/src/components/cards/GithubCard.vue -------------------------------------------------------------------------------- /src/components/cards/WeatherCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/src/components/cards/WeatherCard.vue -------------------------------------------------------------------------------- /src/components/compositions/Checkbox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/src/components/compositions/Checkbox.vue -------------------------------------------------------------------------------- /src/components/compositions/Cover.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/src/components/compositions/Cover.vue -------------------------------------------------------------------------------- /src/components/compositions/Notification.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/src/components/compositions/Notification.vue -------------------------------------------------------------------------------- /src/components/compositions/Suggestion.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/src/components/compositions/Suggestion.vue -------------------------------------------------------------------------------- /src/components/compositions/Tool.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/src/components/compositions/Tool.vue -------------------------------------------------------------------------------- /src/components/compositions/Window.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/src/components/compositions/Window.vue -------------------------------------------------------------------------------- /src/components/icons/box.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/src/components/icons/box.vue -------------------------------------------------------------------------------- /src/components/icons/chat.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/src/components/icons/chat.vue -------------------------------------------------------------------------------- /src/components/icons/check.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/src/components/icons/check.vue -------------------------------------------------------------------------------- /src/components/icons/clock.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/src/components/icons/clock.vue -------------------------------------------------------------------------------- /src/components/icons/close.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/src/components/icons/close.vue -------------------------------------------------------------------------------- /src/components/icons/cursor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/src/components/icons/cursor.vue -------------------------------------------------------------------------------- /src/components/icons/delete.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/src/components/icons/delete.vue -------------------------------------------------------------------------------- /src/components/icons/edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/src/components/icons/edit.vue -------------------------------------------------------------------------------- /src/components/icons/github.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/src/components/icons/github.vue -------------------------------------------------------------------------------- /src/components/icons/info.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/src/components/icons/info.vue -------------------------------------------------------------------------------- /src/components/icons/international.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/src/components/icons/international.vue -------------------------------------------------------------------------------- /src/components/icons/loader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/src/components/icons/loader.vue -------------------------------------------------------------------------------- /src/components/icons/note.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/src/components/icons/note.vue -------------------------------------------------------------------------------- /src/components/icons/openai.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/src/components/icons/openai.vue -------------------------------------------------------------------------------- /src/components/icons/qq.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/src/components/icons/qq.vue -------------------------------------------------------------------------------- /src/components/icons/search.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/src/components/icons/search.vue -------------------------------------------------------------------------------- /src/components/icons/settings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/src/components/icons/settings.vue -------------------------------------------------------------------------------- /src/components/icons/star.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/src/components/icons/star.vue -------------------------------------------------------------------------------- /src/i18n/engine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/src/i18n/engine.ts -------------------------------------------------------------------------------- /src/i18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/src/i18n/index.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/types/calendar.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/src/types/calendar.d.ts -------------------------------------------------------------------------------- /src/types/pwa.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/src/types/pwa.d.ts -------------------------------------------------------------------------------- /src/types/vue.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/src/types/vue.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmh-program/fystart/HEAD/vite.config.ts --------------------------------------------------------------------------------