15 lines
326 B
Vue
15 lines
326 B
Vue
<template>
|
|
<svg class="stroked-text">
|
|
<text x="10" y="10" id="textStroke" xml:space="preserve">
|
|
<tspan x="5" y="8" id="spanStroke">{{ text }}</tspan>
|
|
<tspan x="50" y="0" id="spanStroke1">{{ title }}</tspan>
|
|
</text>
|
|
</svg>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: ["text", "title"],
|
|
};
|
|
</script>
|