PPTist/src/components/SvgWrapper.vue
pipipi-pikachu 39d5b1fc20 update
2020-12-11 22:55:25 +08:00

15 lines
238 B
Vue

<template>
<svg
xmlns="http://www.w3.org/2000/svg"
xmlnsXlink="http://www.w3.org/1999/xlink"
version="1.1"
>
<slot></slot>
</svg>
</template>
<script lang="ts">
export default {
name: 'svg-wrapper',
}
</script>