Files
YGChatCS/src/components/ModuleTitle/index.vue
2025-10-20 21:50:47 +08:00

20 lines
373 B
Vue

<template>
<view class="module-header mb-4">
<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>