S.vue 156 B

123456789
  1. <template>
  2. <Text lineThrough v-bind="$props">
  3. <slot />
  4. </Text>
  5. </template>
  6. <script setup lang="ts">
  7. import Text from '../basic/Text.vue';
  8. </script>