Small changes to deploy

This commit is contained in:
2024-07-04 20:47:39 +02:00
parent 2a25500946
commit d76ad28e89
9 changed files with 1529 additions and 1004 deletions

View File

@@ -0,0 +1,25 @@
<script setup>
import { shallowRef } from 'vue'
const props = defineProps({
src: {
type: Object,
required: true
},
color: {
type: Object,
required: false
}
})
let svgComponent = shallowRef(null)
props.src
.then((module) => {
svgComponent.value = module.default
})
</script>
<template>
<component :is="svgComponent" fill-class-name="blue" />
</template>