NavBarTitleAfter.vue 380 B

12345678910111213141516171819202122
  1. <script setup lang="ts">
  2. // TODO: 从远程地址获取版本号
  3. const version = '2.5.0'
  4. </script>
  5. <template>
  6. <span
  7. style="
  8. display: inline-block;
  9. padding: 0 4px;
  10. margin-left: 4px;
  11. font-size: 10px;
  12. font-weight: 700;
  13. color: green;
  14. background-color: azure;
  15. border-radius: 4px;
  16. "
  17. >
  18. {{ version }}
  19. </span>
  20. </template>