From 4344516dfc185af0a5c7028abb55f6becfe87326 Mon Sep 17 00:00:00 2001
From: shj <1790240199@qq.com>
Date: Tue, 22 Mar 2022 10:20:20 +0800
Subject: [PATCH] Merge branch 'shf' of https://sinanoaq.cn:8888/r/ztqt into shf
---
src/components/Titlename/index.vue | 47 +++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 47 insertions(+), 0 deletions(-)
diff --git a/src/components/Titlename/index.vue b/src/components/Titlename/index.vue
new file mode 100644
index 0000000..a2650a3
--- /dev/null
+++ b/src/components/Titlename/index.vue
@@ -0,0 +1,47 @@
+<template>
+ <div class="app">
+ <div class="box">
+ <div class="dian"></div>
+ <div class="net">{{title}}</div>
+ </div>
+ </div>
+</template>
+<script>
+ export default {
+ name:"Titlename",
+ props:{
+ title:{
+ type:String,
+ default:"标题"
+ }
+ },
+ data(){
+ return{
+
+ }
+ },
+ }
+</script>
+<style scoped>
+.app{
+ width: 100%;
+ padding: 0;
+}
+.box{
+ width: 100%;
+ display: flex;
+ justify-content: left;
+ padding: 10px 10px;
+}
+.dian{
+ width: 5px;
+ height: 18px;
+ background-color: black;
+ margin: 2px 5px;
+}
+.net{
+ line-height: 25px;
+ font-size: 16px;
+ font-weight: bolder;
+}
+</style>
\ No newline at end of file
--
Gitblit v1.9.2