13 lines
183 B
Vue
13 lines
183 B
Vue
<script setup>
|
|
const props = defineProps({
|
|
label: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<tspan dy="10" x="0">{{ props.label }}</tspan>
|
|
</template>
|