Navbar.vue 355 B

123456789101112131415161718192021222324
  1. <template>
  2. <header>
  3. <h1>福建水利监管工作平台</h1>
  4. </header>
  5. </template>
  6. <script setup>
  7. import {onMounted, onUnmounted} from 'vue'
  8. onMounted(() => {
  9. })
  10. onUnmounted(() => {
  11. })
  12. </script>
  13. <style lang="scss" scoped>
  14. /* 头部样式 */
  15. header {
  16. background-color: #007BFF;
  17. color: white;
  18. text-align: center;
  19. padding: 20px;
  20. }
  21. </style>