dashboard
repositories
filestore
activity
search
login
geoai
/
geoai-workbench
geoai-所有demo基础仓
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
feat:具体能力实现处理
shuishen
5 days ago
f67d43a43f6c3e58922e3c2f457dd9caafebfc67
[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>