123456789101112131415161718192021222324 |
- <template>
- <header>
- <h1>福建水利监管工作平台</h1>
- </header>
- </template>
- <script setup>
- import {onMounted, onUnmounted} from 'vue'
- onMounted(() => {
- })
- onUnmounted(() => {
- })
- </script>
- <style lang="scss" scoped>
- /* 头部样式 */
- header {
- background-color: #007BFF;
- color: white;
- text-align: center;
- padding: 20px;
- }
- </style>
|