53 lines
757 B
Vue
53 lines
757 B
Vue
<template>
|
|
<view class="qiun-title-bar">
|
|
<view class="qiun-title-dot"></view>
|
|
<view class="qiun-title-text">{{title}}</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "title-bar",
|
|
props: {
|
|
title: {
|
|
type: String,
|
|
default: ''
|
|
},
|
|
},
|
|
mounted() {
|
|
|
|
},
|
|
methods:{
|
|
}
|
|
}
|
|
</script>
|
|
|
|
|
|
<style>
|
|
.qiun-title-bar{
|
|
display: flex;
|
|
flex-direction: row !important;
|
|
flex-wrap: nowrap;
|
|
align-items: center;
|
|
height: 40px;
|
|
/* border:1px solid red; */
|
|
}
|
|
|
|
.qiun-title-dot {
|
|
border-radius: 10px;
|
|
background-color: #ffffff;
|
|
width: 5px;
|
|
height: 16px;
|
|
margin-left: 8px;
|
|
}
|
|
|
|
.qiun-title-text {
|
|
font-size: 17px;
|
|
color: black;
|
|
margin-left: 8px;
|
|
line-height: 22px;
|
|
height: 22px;
|
|
/* font-weight: bold; */
|
|
|
|
}
|
|
</style> |