20 lines
373 B
Vue
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>
|