其他分享
首页 > 其他分享> > VuePress中使用UI库

VuePress中使用UI库

作者:互联网

1.在docs -> .vuepress 下新建一个js文件

官方文档中给出的作用:

 

 2.在enhanceApp.js中加入以下

import Element from 'element-ui'; //引入组件库
import 'element-ui/lib/theme-chalk/index.css';

export default ({ Vue, options, router }) => {
  Vue.use(Element);
};

和薛定喵君学到的,原文地址:vuepress集成element-ui - 云+社区 - 腾讯云 (tencent.com)

标签:Vue,import,js,ui,vuepress,使用,UI,element,VuePress
来源: https://blog.csdn.net/takeki_/article/details/121191060