Vue App的底部欄(Footer),通常用于顯示常規的頁面信息或功能鏈接,例如版權信息、隱私政策、操作菜單等。“底部欄”通常出現在頁面的最底部,作為頁面的一個固定元素存在,為用戶提供方便。
在Vue中實現一個“底部欄”,可以采用Vue組件的方式來封裝,通過組件的復用來實現代碼的簡潔。下面是一個簡單的Vue組件“Footer”:
<template>
<div class="footer">
<ul class="footer-links">
<li><a href="#">聯系我們</a></li>
<li><a href="#">隱私政策</a></li>
<li><a href="#">版權信息</a></li>
</ul>
</div>
</template>
<script>
export default {
name: 'Footer'
}
</script>
<style>
.footer {
position: fixed;
bottom: 0;
width: 100%;
height: 50px;
background-color: #f5f5f5;
display: flex;
}
.footer-links {
list-style-type: none;
margin: auto;
}
.footer-links li {
float: left;
margin-right: 20px;
}
.footer-links li:last-child {
margin-right: 0;
}
</style>
上面的Vue組件定義了一個“Footer”,它是一個具有固定位置和樣式的底部欄,包含三個鏈接菜單。具體樣式可以根據需要自定義,比如顏色、高度、字體等。通過這種方式實現的底部欄,可以大大提高代碼的復用性和可維護性,并且非常靈活易用。
上一篇html導航代碼復用