mirror of
https://github.com/fmhy/edit.git
synced 2025-07-31 00:02:17 +10:00
10 lines
347 B
Vue
10 lines
347 B
Vue
<script setup lang="ts">
|
|
const { frontmatter } = useData()
|
|
</script>
|
|
|
|
<template>
|
|
<a v-if="frontmatter.hero.announcement" :href="frontmatter.hero.announcement.link"
|
|
class="mb-3 inline-flex items-center rounded-lg bg-[var(--vp-c-default-soft)] px-4 py-1 text-sm font-semibold">
|
|
{{ frontmatter.hero.announcement.title }}
|
|
</a>
|
|
</template>
|