diff --git a/README.md b/README.md index a946a64..16a73f6 100644 --- a/README.md +++ b/README.md @@ -13,13 +13,11 @@

-用于管理存储图库,如果您合理的使用,可以当做图床、文件分享,不错吧! ## 特性 - 支持 Github / Gitee -- 无需部署,2 步开始 -- 开箱即用,用完即走 +- 无需部署,开箱即用,用完即走 - 支持拖拽、粘贴上传 - 多个 CDN 加速 - 可以当做文件分享 @@ -56,5 +54,3 @@ $ npm run build ``` 如果您是部署到自己服务器上,你可能需要 [Github OAuth2](https://github.com/xjh22222228/github-oauth2) - -但作者不建议您自己部署, 开箱即用,用完即走。 diff --git a/src/components/Action.vue b/src/components/Action.vue index 7f87185..07262e6 100644 --- a/src/components/Action.vue +++ b/src/components/Action.vue @@ -15,7 +15,6 @@ {{ t('report') }} - {{ t('about') }} @@ -34,16 +33,6 @@ const baseUrl = import.meta.env.BASE_URL const store = useStore() const isLogin = computed(() => store.state.isLogin) -const handleAbout = function() { - ElMessageBox.confirm('', { - title: t('what'), - dangerouslyUseHTMLString: true, - message: t('description'), - cancelButtonText: t('cancel'), - confirmButtonText: t('ok'), - }).catch(() => {}) -} - const handleInfo = function() { ElMessageBox.confirm('', { cancelButtonText: t('cancel'), diff --git a/src/i18n/index.ts b/src/i18n/index.ts index 65d5cf4..0e55e31 100644 --- a/src/i18n/index.ts +++ b/src/i18n/index.ts @@ -51,11 +51,6 @@ export default createI18n({ editFile: "Edit This File", copyed: "Copy successfully", uploadQueue: "Upload queue", - description: ` -

Boomb is used to easily manage your Github storage gallery.

-

If you use it reasonably, it can be used as a picture bed and file sharing. Isn't it good!

-

Share in the spirit of open source, if it helps you, Star will support it!

- `, }, "zh-CN": { @@ -92,11 +87,6 @@ export default createI18n({ editFile: "编辑此文件", copyed: "复制成功", uploadQueue: "上传队列", - description: ` -

Boomb 用于轻松管理您的 Github 存储图库。

-

如果您合理的使用,可以当做图床、文件分享,不错吧!

-

以开源的精神分享,如果对您有帮助,Star 支持一下!

- `, }, }, });