vant-weapp/docs/src/doc.config.js
2018-08-13 19:12:05 +08:00

55 lines
1.2 KiB
JavaScript

/* eslint-disable */
import packageJson from '../../package.json';
import components from '../../example/config';
const { version } = packageJson;
export default {
header: {
logo: {
version,
image: 'https://img.yzcdn.cn/public_files/2017/12/18/fd78cf6bb5d12e2a119d0576bedfd230.png',
title: 'Vant Weapp',
href: '#/'
},
nav: {
'Vue 组件': 'https://youzan.github.io/vant/',
'小程序组件': 'https://youzan.github.io/vant-weapp/',
github: 'https://github.com/youzan/vant-weapp'
}
},
nav: [
{
name: '开发指南',
groups: [
{
list: [
{
path: '/intro',
title: '介绍',
md: true
},
{
path: '/quickstart',
title: '快速上手',
md: true
},
{
path: '/changelog',
title: '更新日志',
md: true
},
{
path: '/common',
title: '内置样式'
}
]
}
]
},
{
name: '组件',
groups: components
}
]
};