Files
YGChatCS/components/ModuleTitle/index.vue

19 lines
369 B
Vue

<template>
<view class="module-header mb12">
<text class="module-title">{{ title }}</text>
<image class="underline" src="./images/wave_icon.png" mode="aspectFill"/>
</view>
</template>
<script setup>
defineProps({
title: {
type: String,
default: '图片详情'
}
});
</script>
<style scoped lang="scss">
@import './styles/index.scss';
</style>