push the uni-demo project

This commit is contained in:
2022-06-21 10:55:37 +08:00
parent 37ca848bb6
commit 333705f703
8034 changed files with 1388875 additions and 0 deletions

View File

@@ -0,0 +1,51 @@
<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;
}
.qiun-title-dot {
border-radius: 10px;
background-color: #409EFF;
width: 5px;
height: 16px;
margin-left: 8px;
}
.qiun-title-text {
font-size: 17px;
color: #666666;
margin-left: 8px;
line-height: 22px;
height: 22px;
font-weight: bold;
}
</style>