chore: update element-plus to the latest version

This commit is contained in:
xiaoxian521
2021-08-18 18:05:13 +08:00
parent 74ef4e1722
commit 666e755ae5
7 changed files with 1340 additions and 216 deletions

View File

@@ -29,7 +29,7 @@ import Storage from "responsive-storage";
app.use(Storage, {
// 默认显示首页tag
routesInStorage: {
type: String,
type: Array,
default: Storage.getData(undefined, "routesInStorage") ?? [
{
path: "/welcome",
@@ -41,6 +41,13 @@ app.use(Storage, {
}
}
]
},
// 国际化 默认中文zh
locale: {
type: Object,
default: Storage.getData(undefined, "locale") ?? {
locale: "zh"
}
}
});