$theme-default:handle algolia search result with Chinese hash (close:#2431) (#2432) (6183840)@大喵 Features $theme-default:allow 'auto' in defined sidebars (close:#1252) (#2380) (597f83b)@Robert Lin 1.5.1(2020-06-09) Bug Fixes $core: HMR issue caused by chokidar v3 (close:#2392...
@vuepress/core: 1.5.2 @vuepress/theme-default: 1.5.2 vuepress: ^1.5.0 =>1.5.2 npmGlobalPackages: vuepress: Not Found you should check config files,make sure the link is not duplicated themeConfig:{ nav:[ ... items:[text:'',link:'/'] ] }...
在theme 新建 index.js 文件,输入以下内容 module.exports= {extend:'@vuepress/theme-default'} 这里有个坑,当时在官方文档中怎么也找不到上面的代码应该放到哪里,试了很久才发现应该放到theme目录下,如果这里没有配对,修改的样式不仅可能不会生效页面可能还会出现白屏 更改文件 在theme 下新建 layouts 目录,在 lay...
vuepress-theme-default-prefers-color-scheme This plugin adds support for prefers-color-scheme to the Vuepress 1.x default theme. Live Demo and Documentation Installation yarn add vuepress-theme-default-prefers-color-scheme # or npm i vuepress-theme-default-prefers-color-scheme Usage // .vuepress ...
module.exports={extend:'@vuepress/theme-default'} 样式是恢复了一些,但是因为我们本来使用的是 reco 主题,现在改成了继承 vuepress 默认主题,reco 主题带来的一些功能就全丢失了,那我们能继承 reco 主题吗? 答案是不能,这在VuePress 官方文档的「主题的继承 」章节里有讲到: ...
创建目录blog mkdir blog 在package.json 中添加一些 scripts {"scripts":{"dev":"vuepress dev blog","build":"vuepress build blog"}} 在本地启动服务器 yarn dev 这时候访问http://localhost:8080/可以看到404页面。 0x02 安装vuepress-theme-reco主题 ...
引入主题:在VuePress项目的配置文件.vuepress/config.js中,将theme选项指向my-theme主题的路径。 要自定义VuePress的页面布局,需要做以下几步: 创建页面模板文件:在VuePress项目的根目录下创建一个.vue文件,用于定义特定页面的布局。 配置页面布局:在.vue文件中使用组件来包含页面内容,并通过插槽(slot)来定制布局的各个...
add prefers-color-scheme for vuepress default theme
theme: defaultTheme({ // 在这里进行配置 navbar, sidebar }) } sidebar配置完成后效果如下: 配置完成后,就可以正常切换左侧栏了,至此页面搭建工作完成。 在VuePress中展示Vue组件 我们平时在项目中使用Element,需要在main.js中引入Element,并使用Vue.use(Element) 进行调用,才能够在vue组件中使用Element的组件,那...
themeConfig 默认主题 如果你没有设置 VuePress 配置的theme配置项,则代表使用的是默认主题。默认主题配置主要从目录结构、首页、导航栏、侧边栏、搜索框等方面进行讲解。 目录结构 docs├─.vuepress│ ├─.cache│ │ ├─default-development│ │ └─default-production│ ├─.temp│ │ ├─internal│ │ ├...