diff --git a/CHANGELOG.zh_CN.md b/CHANGELOG.zh_CN.md index 77f37eeeb02e2608cc85cd30e0a5eee1a9952f38..e17d4d3aa649f878fb63fe0706ebf08ad6f95c57 100644 --- a/CHANGELOG.zh_CN.md +++ b/CHANGELOG.zh_CN.md @@ -1,5 +1,10 @@ ## Wip +### ✨ Features + +- 缓存可以配置是否加密 +- 多语言支持 + ### 🎫 Chores - 移除 messageSetting 配置 diff --git a/package.json b/package.json index 8b73d15603303aa364a2b6b3ac4bb1332beb8b54..91abafbca2d31078b45c26dca1b676365b8c5607 100644 --- a/package.json +++ b/package.json @@ -37,16 +37,16 @@ "vditor": "^3.6.3", "vue": "^3.0.2", "vue-i18n": "^9.0.0-beta.8", - "vue-router": "^4.0.0-rc.3", + "vue-router": "^4.0.0-rc.5", "vuex": "^4.0.0-rc.1", "vuex-module-decorators": "^1.0.1", - "xlsx": "^0.16.8", + "xlsx": "^0.16.9", "zxcvbn": "^4.4.2" }, "devDependencies": { "@commitlint/cli": "^11.0.0", "@commitlint/config-conventional": "^11.0.0", - "@iconify/json": "^1.1.261", + "@iconify/json": "^1.1.262", "@ls-lint/ls-lint": "^1.9.2", "@purge-icons/generated": "^0.4.1", "@types/echarts": "^4.9.1", @@ -72,7 +72,7 @@ "cross-env": "^7.0.2", "dot-prop": "^6.0.1", "dotenv": "^8.2.0", - "eslint": "^7.13.0", + "eslint": "^7.14.0", "eslint-config-prettier": "^6.15.0", "eslint-plugin-prettier": "^3.1.4", "eslint-plugin-vue": "^7.1.0", diff --git a/src/components/Application/index.ts b/src/components/Application/index.ts index e52eab27fa9f27e0d298ad053d421e40101c095b..b48b927eae0b812d55bdef61d375aec34e18dbce 100644 --- a/src/components/Application/index.ts +++ b/src/components/Application/index.ts @@ -1,3 +1,7 @@ import AppLocalPicker from './src/AppLocalPicker.vue'; +import AppFooterToolbar from './src/AppFooterToolbar.vue'; +import { withInstall } from '../util'; -export { AppLocalPicker }; +export { AppLocalPicker, AppFooterToolbar }; + +export default withInstall(AppLocalPicker, AppFooterToolbar); diff --git a/src/components/Footer/src/index.vue b/src/components/Application/src/AppFooterToolbar.vue similarity index 97% rename from src/components/Footer/src/index.vue rename to src/components/Application/src/AppFooterToolbar.vue index 706a0786b170df42a63d7ba8085c12c8c3d5eeea..b0550bab93a631443ad27d1919b4e74fc4b194ea 100644 --- a/src/components/Footer/src/index.vue +++ b/src/components/Application/src/AppFooterToolbar.vue @@ -10,11 +10,14 @@