-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathParser.vue
More file actions
66 lines (58 loc) · 1.16 KB
/
Parser.vue
File metadata and controls
66 lines (58 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<template>
<div class="parser-container">
<!-- 简化的标题显示 -->
<div class="simple-header">
<span class="navigation-title">Parser</span>
</div>
<!-- 内容区域 -->
<div class="main-content">
<h1 class="content-title">解析</h1>
<p class="content-description">这是解析页面的内容。</p>
</div>
</div>
</template>
<script>
export default {
name: 'Parser'
};
</script>
<style scoped>
.parser-container {
height: 100%;
display: flex;
flex-direction: column;
}
.simple-header {
display: flex;
align-items: center;
width: 100%;
padding: 16px 20px;
background: var(--color-bg-3);
border-bottom: 1px solid var(--color-border-2);
box-sizing: border-box;
}
.navigation-title {
font-size: 16px;
font-weight: 600;
color: var(--color-text-1);
white-space: nowrap;
}
.main-content {
flex: 1;
padding: 20px;
background: var(--color-bg-2);
border-radius: 8px;
margin-top: 16px;
}
.content-title {
font-size: 24px;
font-weight: 600;
color: var(--color-text-1);
margin-bottom: 16px;
}
.content-description {
font-size: 16px;
color: var(--color-text-2);
line-height: 1.6;
}
</style>