mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
52 lines
827 B
Vue
52 lines
827 B
Vue
<template>
|
|
<div>
|
|
<van-nav-bar
|
|
v-show="title"
|
|
class="van-doc-nav-bar"
|
|
:title="title"
|
|
fixed
|
|
left-arrow
|
|
@click-left="onBack"
|
|
/>
|
|
<router-view />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
computed: {
|
|
title() {
|
|
const { name } = this.$route.meta;
|
|
return name ? name.replace(/-/g, '') : '';
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
onBack() {
|
|
history.back();
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style lang="postcss">
|
|
body {
|
|
color: #333;
|
|
line-height: 1;
|
|
background-color: #f8f8f8;
|
|
font-family: Arial, Helvetica, "STHeiti STXihei", "Microsoft YaHei", Tohoma, sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
|
|
.van-doc-nav-bar {
|
|
.van-nav-bar__title {
|
|
font-size: 15px;
|
|
text-transform: capitalize;
|
|
}
|
|
}
|
|
|
|
.van-doc-demo-section {
|
|
padding-top: 46px;
|
|
}
|
|
</style>
|