2022-11-25 18:07:05 +08:00

32 lines
594 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!--
* @Author: Kane
* @Date: 2022-11-25 15:29:48
* @LastEditors: Kane
* @LastEditTime: 2022-11-25 15:36:18
* @FilePath: \hello-router\src\components\页面组件\header.vue
* @Description:
*
* Copyright (c) ${2022} by Kane, All Rights Reserved.
-->
<template>
<div class="container">
<h1>我来组成头部</h1>
</div>
</template>
<script>
export default {
name: "header-part",
data() {
return {};
},
};
</script>
<style scoped>
.container {
display: flex;
justify-content: center;
align-items: center;
height: 100px;
border: 1px solid red;
}
</style>