unibest/docs/.vitepress/theme/components/NavBarTitleAfter.vue

22 lines
380 B
Vue

<script setup lang="ts">
// TODO: 从远程地址获取版本号
const version = '2.5.0'
</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>