diff --git a/README.md b/README.md index 7e29c02..39663b8 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,12 @@ 本项目初衷是方便特殊时期隔离在家而材料有限的小伙伴,因此菜谱材料会尽量限制在特定范围内。 +更多可参见 [来做菜 | 关于](https://cook.yunyoujun.cn/about)。 + +### Features + +本项目支持 PWA,使用浏览器打开时,可将其添加到主屏幕以获得近原生 APP 的体验。 + ## 开发 ```bash diff --git a/index.html b/index.html index 8c77653..dba0e0e 100644 --- a/index.html +++ b/index.html @@ -7,7 +7,6 @@ - 隔离食用手册 diff --git a/src/components.d.ts b/src/components.d.ts index 3bfe0ae..5232b92 100644 --- a/src/components.d.ts +++ b/src/components.d.ts @@ -17,6 +17,7 @@ declare module '@vue/runtime-core' { RouterView: typeof import('vue-router')['RouterView'] StapleTag: typeof import('./components/tags/StapleTag.vue')['default'] Switch: typeof import('./components/Switch.vue')['default'] + ToggleMode: typeof import('./components/ToggleMode.vue')['default'] ToolTag: typeof import('./components/tags/ToolTag.vue')['default'] VegetableTag: typeof import('./components/tags/VegetableTag.vue')['default'] } diff --git a/src/components/AboutMe.vue b/src/components/AboutMe.vue index 8058568..4fb256f 100644 --- a/src/components/AboutMe.vue +++ b/src/components/AboutMe.vue @@ -11,8 +11,47 @@ const copyright = { author: '云游君', authorUrl: 'https://www.yunyoujun.cn', } + +const links = [ + { + type: 'github', + label: 'GitHub: YunYouJun', + href: 'https://github.com/YunYouJun', + }, + { + type: 'telegram', + label: 'Telegram Channel', + href: 'https://t.me/elpsycn', + }, + { + type: 'weibo', + label: '微博:机智的云游君', + href: 'http://weibo.com/jizhideyunyoujun', + }, + { + type: 'twitter', + label: 'Twitter: YunYouJun', + href: 'https://twitter.com/YunYouJun', + }, + { + type: 'wechat', + label: '微信公众号:云游君', + href: '/wechat', + target: '_self', + }, + { + type: 'bilibili', + label: '云游君Official', + href: 'https://space.bilibili.com/1579790', + }, + { + type: 'blog', + label: '博客:yunyoujun.cn', + href: 'http://www.yunyoujun.cn', + }, +] diff --git a/src/components/ChooseFood.vue b/src/components/ChooseFood.vue index 0efffb8..2ba9440 100644 --- a/src/components/ChooseFood.vue +++ b/src/components/ChooseFood.vue @@ -1,8 +1,6 @@