feat:图片轮播组件封装

This commit is contained in:
duanshuwen
2025-07-12 23:10:36 +08:00
parent 7bea43f450
commit 9bac216d7a
9 changed files with 138 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<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>