dashboard
repositories
filestore
activity
search
login
geoai
/
geoai-workbench
geoai-所有demo基础仓
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
Merge branch 'master' of http://139.196.74.78:10010/r/geoai/geoai-workbench
shuishen
10 hours ago
2ae460fc4a4c2419cf44329783d49a739e2a04ea
[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>