fix
This commit is contained in:
@@ -71,6 +71,8 @@
|
||||
|
||||
.img-src {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: contain;
|
||||
}
|
||||
|
||||
.crop-tool {
|
||||
|
||||
@@ -130,7 +130,9 @@
|
||||
}
|
||||
|
||||
.img-src {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: contain;
|
||||
}
|
||||
|
||||
.main-pic {
|
||||
|
||||
@@ -108,8 +108,9 @@
|
||||
}
|
||||
|
||||
const resolveTitle = (title?: RouteMetaValue<string>, titleKey?: RouteMetaValue<string>) => {
|
||||
const key = resolveMetaValue(titleKey)
|
||||
return title ? t(title) || "" : ""
|
||||
let key = title || titleKey
|
||||
// const key = resolveMetaValue(titleKey)
|
||||
return key ? t(key) || "" : ""
|
||||
}
|
||||
|
||||
const autoBreadcrumbs = computed(() => {
|
||||
|
||||
Reference in New Issue
Block a user