mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
27 lines
504 B
Vue
27 lines
504 B
Vue
<template>
|
|
<div class="page-container clearfix">
|
|
<side-nav :data="navConfig['zh-CN']" base="/component"></side-nav>
|
|
<div class="page-content">
|
|
<router-view></router-view>
|
|
<footer-nav></footer-nav>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import 'highlight.js/styles/color-brewer.css';
|
|
import navConfig from './nav.config.json';
|
|
|
|
export default {
|
|
data() {
|
|
return {
|
|
navConfig: navConfig
|
|
};
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style lang="css">
|
|
@import './assets/docs.css';
|
|
</style>
|