greenPro/components/page-head/page-head.vue

17 lines
265 B
Vue
Raw Normal View History

2024-06-02 14:51:29 +00:00
<template name="page-head">
<view class="common-page-head">
<view class="common-page-head-title">{{title}}</view>
</view>
</template>
<script>
export default {
name: "page-head",
props: {
title: {
type: String,
default: ""
}
}
}
</script>