Main/resources/[jobs]/[police]/xRadar/html/app/utils/inlineSvg.js
2025-06-07 08:51:21 +02:00

30 lines
No EOL
617 B
JavaScript

export default {
props: {
src: {
type: String,
required: true
},
fill: {
type: String,
default: 'currentColor'
}
},
data() {
return {
svg: ''
}
},
async mounted() {
const res = await fetch(this.src);
const html = await res.text();
this.svg = html;
},
async updated() {
const res = await fetch(this.src);
const html = await res.text();
this.svg = html;
},
template: `
<div v-html="svg" :style="{fill:fill}" />
`
}