2021-02-05 17:26:08 +08:00

17 lines
274 B
Vue

<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>