You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
老师:
在git clone 了 vuepress-theme-vdoing后,做了yarn add -D vuepress后,
由于项目的特定要求,我又安装了element-ui,以及必要的async-validator@4.0.7,并配置了:enhanceApp.js
// import vue from 'vue/dist/vue.esm.browser' import ElementUI from 'element-ui'; import 'element-ui/lib/theme-chalk/index.css'; export default ({ Vue, // VuePress 正在使用的 Vue 构造函数 options, // 附加到根实例的一些选项 router, // 当前应用的路由实例 siteData // 站点元数据 }) => { // window.Vue = vue // 使页面中可以使用Vue构造函数 (使页面中的vue demo生效) if (typeof process === 'undefined') { Vue.use(ElementUI) } }
其它没有多余的操作。
然后build、dev后,内容页如果是空白内容(占位用)就会出现“undefined”,内容页如果不是空白页就不会。同时,目录页一直会出现undefined。不知是什么原因。
老师,请指教!
Beta Was this translation helpful? Give feedback.
All reactions