dashboard
repositories
filestore
activity
search
login
geoai
/
geoai-workbench
geoai-所有demo基础仓
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
feat: init异常检测
罗广辉
8 hours ago
2e68b1338ea04125ce4360e6d2ddf03f54df86ac
[geoai/geoai-workbench.git]
/
apps
/
workbench-console
/
src
/
components
/
PageHeader.vue
1
2
3
4
5
6
7
8
9
10
<script setup lang="ts">
defineProps<{ eyebrow: string; title: string; description: string }>();
</script>
<template>
<header class="page-header">
<div><p class="eyebrow">{{ eyebrow }}</p><h1>{{ title }}</h1><p class="page-description">{{ description }}</p></div>
<a-tag class="local-tag" color="green">本机只读</a-tag>
</header>
</template>