From f56e474c81bb25845b46cf99c85bd313dbfcd3b5 Mon Sep 17 00:00:00 2001
From: wwf <1971391498@qq.com>
Date: 星期六, 31 一月 2026 19:26:25 +0800
Subject: [PATCH] 项目初始化+首页+公告详情页面

---
 src/views/main/components/contentTitle.vue |   33 +++++++++++++++++++++++++++++++++
 1 files changed, 33 insertions(+), 0 deletions(-)

diff --git a/src/views/main/components/contentTitle.vue b/src/views/main/components/contentTitle.vue
new file mode 100644
index 0000000..da25dc8
--- /dev/null
+++ b/src/views/main/components/contentTitle.vue
@@ -0,0 +1,33 @@
+<template>
+  <el-row>
+    <el-col>
+      <div class="area">{{ title }}</div>
+    </el-col>
+  </el-row>
+</template>
+<script>
+export default {
+  data() {
+    return {
+
+    }
+  },
+  props: {
+    title: {
+      type: String,
+      default: '鍩烘湰淇℃伅',
+    }
+  }
+}
+</script>
+<style scoped>
+.area {
+  color: '#000';
+  background-color: #f7f7f7;
+  padding: 14px;
+  font-size: 16px;
+  font-weight: bold;
+  margin-top: 14px;
+  margin-bottom: 14px;
+}
+</style>
\ No newline at end of file

--
Gitblit v1.8.0