用vue2封装一个头部组件
时间: 2023-11-01 19:07:58 浏览: 72
基于vue封装的组件
好的,下面是一个简单的头部组件的代码示例:
```html
<template>
<header class="header">
<div class="logo">Logo</div>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</header>
</template>
<script>
export default {
name: 'Header',
data() {
return {};
},
};
</script>
<style scoped>
.header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px;
background-color: #f2f2f2;
border-bottom: 1px solid #ccc;
}
.logo {
font-size: 24px;
font-weight: bold;
}
nav ul {
display: flex;
list-style: none;
}
nav ul li:not(:last-child) {
margin-right: 20px;
}
nav ul li a {
color: #333;
text-decoration: none;
font-size: 16px;
font-weight: bold;
}
</style>
```
代码中,我们使用了 `header` 标签来表示头部组件,并且在模板中定义了包含 Logo 和导航链接的 HTML 结构。为了使样式表仅应用于当前组件,我们使用了 `scoped` 属性来限定 CSS 样式的作用范围。最后,我们使用了 `export default` 将组件导出,以便在其他地方可以引用到。
阅读全文