穿透
<template>
<div id="mine">
<!--导航栏-->
<van-nav-bar
title="个人中心"
:fixed=true
:border=false></van-nav-bar>
</div>
</template>
<script>
export default {
name: "Mine"
}
</script>
<style lang="less" scoped>
#mine {
width: 100%;
height: 100%;
background-color: #f5f5f5;
}
.van-nav-bar {
background-color: #3bba63;
}
#mine /deep/ .van-nav-bar__title{
color: white !important;
font-size: 1rem;
}
</style>