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