You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
512 B
41 lines
512 B
<template>
|
|
<view class="nav-head">
|
|
<slot></slot>
|
|
<slot name="bread"></slot>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
const COMPONENT_NAME = 'navigation'
|
|
export default {
|
|
name: COMPONENT_NAME,
|
|
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
computed: {
|
|
|
|
},
|
|
mounted() {
|
|
|
|
},
|
|
methods: {
|
|
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
.nav-head{
|
|
line-height: 108rpx;
|
|
background-color: #34026BFF;
|
|
text-align: center;
|
|
font-size: 36rpx;
|
|
color: #fff;
|
|
position: relative;
|
|
text-transform: capitalize;
|
|
padding: 0 36rpx;
|
|
}
|
|
</style>
|
|
|