mirror of
https://github.com/xxxsf/vue3-h5-template.git
synced 2025-04-06 05:23:46 +08:00
43 lines
952 B
Vue
43 lines
952 B
Vue
<template>
|
|
<footer class="fixed-bottom clearfix">
|
|
<div class="col4">
|
|
<router-link to="/index">index</router-link>
|
|
</div>
|
|
<div class="col4">
|
|
<router-link to="/second">menu3</router-link>
|
|
</div>
|
|
<div class="col4">
|
|
<router-link to="/third">menu4</router-link>
|
|
</div>
|
|
</footer>
|
|
</template>
|
|
<script>
|
|
export default{
|
|
data(){
|
|
return{
|
|
msg: 'Hello vue'
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
<style>
|
|
.fixed-bottom {
|
|
position: fixed;
|
|
background: #fff;
|
|
width: 100%;
|
|
bottom: 0;
|
|
z-index: 99;
|
|
border-top: 1px solid #ccc;
|
|
display: grid;
|
|
text-align: center;
|
|
grid-template-columns: 33% 33% 33%;
|
|
}
|
|
.fixed-bottom a {
|
|
width: 100%;
|
|
display: inline-block;
|
|
font-size: 12px;
|
|
color: #7a7a7a;
|
|
line-height: 50px;
|
|
}
|
|
</style>
|