Navbar.vue 475 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <header>
  3. <span>{{ route.meta.title || '福建水利监管工作平台' }}</span>
  4. </header>
  5. </template>
  6. <script setup>
  7. import { onMounted, onUnmounted } from 'vue'
  8. import { useRoute } from "vue-router";
  9. const route = useRoute()
  10. onMounted(() => {
  11. })
  12. onUnmounted(() => {
  13. })
  14. </script>
  15. <style lang="scss" scoped>
  16. /* 头部样式 */
  17. header {
  18. background-color: #007BFF;
  19. color: white;
  20. text-align: center;
  21. padding: 8px 0;
  22. font-size: 1.2rem;
  23. }
  24. </style>