@fy-/fws-vue 2.1.11 → 2.1.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -305,7 +305,7 @@ onMounted(async () => {
|
|
|
305
305
|
<a v-if="field.link" :href="field.link" class="fws-link mb-3">{{
|
|
306
306
|
field.label
|
|
307
307
|
}}</a>
|
|
308
|
-
<span v-else class="mb-2"
|
|
308
|
+
<span v-else class="mb-2" v-html="field.label" />
|
|
309
309
|
</h3>
|
|
310
310
|
|
|
311
311
|
<template v-if="field.cat === 'input'">
|
|
@@ -16,9 +16,11 @@ const props = withDefaults(
|
|
|
16
16
|
|
|
17
17
|
const breadcrumbsSchemaFormat = props.nav.map((item, index) => {
|
|
18
18
|
return {
|
|
19
|
-
position: index + 1,
|
|
20
|
-
name: item.name,
|
|
21
|
-
item: item.to,
|
|
19
|
+
'position': index + 1,
|
|
20
|
+
'name': item.name,
|
|
21
|
+
'item': item.to,
|
|
22
|
+
'@id': item.to,
|
|
23
|
+
'@type': 'ListItem',
|
|
22
24
|
}
|
|
23
25
|
})
|
|
24
26
|
|