From fcc1ea2bf3ce3efe1f927bd087e4cd6cf2116c32 Mon Sep 17 00:00:00 2001 From: lyfO_o <764716047@qq.com> Date: 星期三, 30 三月 2022 16:21:36 +0800 Subject: [PATCH] Merge remote-tracking branch 'remotes/origin/shf' into master --- 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