StoryBook

This commit is contained in:
huanqing.shao
2019-09-01 10:36:53 +08:00
parent a05068d15c
commit deaa55d632
9 changed files with 780 additions and 32 deletions

12
.vuepress/enhanceApp.js Normal file
View File

@ -0,0 +1,12 @@
import 'element-ui/lib/theme-chalk/index.css'
import Element from 'element-ui'
export default ({
Vue, // VuePress 正在使用的 Vue 构造函数
options, // 附加到根实例的一些选项
router, // 当前应用的路由实例
siteData // 站点元数据
}) => {
Vue.use(Element)
}