unibest/docs/.vitepress/theme/components/NavBarTitleAfter.vue
2024-12-06 09:59:47 +08:00

21 lines
367 B
Vue

<script setup lang="ts">
import { version } from '../../../../package.json'
</script>
<template>
<span
style="
display: inline-block;
padding: 0 4px;
margin-left: 4px;
font-size: 10px;
font-weight: 700;
color: green;
background-color: azure;
border-radius: 4px;
"
>
{{ version }}
</span>
</template>