index.vue 259 B

123456789101112131415
  1. <template>
  2. <div class=" font-medium " style="font-size: 16px;">
  3. {{ props.title }}
  4. <slot></slot>
  5. </div>
  6. </template>
  7. <script setup lang="ts" name="title">
  8. const props = defineProps({
  9. title: {
  10. type: String,
  11. default: '标题',
  12. },
  13. });
  14. </script>