123456789101112131415 |
- <template>
- <div class=" font-medium " style="font-size: 16px;">
- {{ props.title }}
- <slot></slot>
- </div>
- </template>
- <script setup lang="ts" name="title">
- const props = defineProps({
- title: {
- type: String,
- default: '标题',
- },
- });
- </script>
|