use sections plugin

This commit is contained in:
2023-08-16 13:49:35 +02:00
parent 8af2815bb6
commit 0148c0f3a0
7 changed files with 80 additions and 72 deletions

View File

@@ -17,6 +17,12 @@
v-if="item.svg"
v-html="item.svg"
></div>
<img
style="width: 100%"
v-else-if="item.image"
:src="item.image"
>
<img
v-else
style="width: 100%"
@@ -69,7 +75,6 @@ export default {
}
},
mounted() {
}
}
</script>