快乐的昕的电脑
2025-09-23 c51b746a6369f235be7fb45500c8c1c5765b5a20
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<template name="page-head">
    <view class="uni-page-head">
        <view class="uni-page-head-title">{{title}}</view>
    </view>
</template>
<script>
    export default {
        name: "page-head",
        props: {
            title: {
                type: String,
                default: ""
            }
        }
    }
</script>