Files
catchAdmin/resources/admin/components/catchForm/components/Title/Title.vue
2024-04-23 13:12:02 +08:00

24 lines
375 B
Vue

<template>
<component :is="type" :class="class" :style="{ fontStyle: italic ? 'italic' : 'normal' }">{{
title
}}</component>
</template>
<script setup>
defineProps({
title: {
type: String,
default: '这是一个标题'
},
type: {
type: String,
default: 'h3'
},
class: {
type: String,
default: ''
},
italic: Boolean
})
</script>