随即去vuepress官网看一下这个参数默认值是多少 默认值是.theme-default-content :not(a) > img 于是参照这个格式 在config.js配置中添加了 plugins:[['@vuepress/medium-zoom',{selector:'.page :not(a) > img',}]] 再次运行果然可以了。 真的是太难了,这么小个问题,百度、谷歌查这么久都没答案,难怪程...
'#app > .theme-container>.page > .theme-default-content' // 获取最外层的元素 ); themeDefaultContent.attr('id', 'container'); // 设置id属性,就是这么牛逼,搞定 const btw = new BTWPlugin(); btw.init({ id: 'container', blogId: 'xxxx你自己的博客ID', name: 'itclanCoder', qrcode:...
默认值是.theme-default-content :not(a) > img 于是参照这个格式 在config.js配置中添加了 plugins:[['@vuepress/medium-zoom',{selector:'.page :not(a) > img',}]] 再次运行果然可以了。 真的是太难了,这么小个问题,百度、谷歌查这么久都没答案,难怪程序员容易掉头发的,百度、谷歌太不给力了。
window.onload = function() { const themeDefaultContent = $( '#app > .theme-container>.page > .theme-default-content' ); themeDefaultContent.removeAttr('id'); // 移除掉id属性,就是这么简单,JQ牛逼~ }; 1. 2. 3. 4. 5. 6. 上面的代码就是使用jq移除元素上的某个属性,...
去vuepress的github下载源码https://github.com/vuejs/vuepress,把路径/vuepress-master/packages/@vuepress/theme-default下,layouts和util拷贝出来,存放目录如下: 在theme文件夹下,创建一个index.js其内容如下: // .vuepress/theme/index.js module.exports = { ...
在docs/.vuepress/theme/components 下新建 Tags.vue 文件。 为了使页面自动集成 tag 组件,需要修改 Layout.vue 组件,上一节我们讲过要修改默认主题可以用组件的继承,现在把默认主题的 Layout 组件复制到 docs/.vuepress/theme/layouts 目录下(如果不知道如何复制默认主题的 Layout 请看上一节),修改其中的 ...
在my-theme/layouts/Layout.vue中编写 Vue 组件,作为主要的布局模板: <template><Header/><nuxt/><!-- 这里将被 Markdown 文件的内容替换 --><Footer/></template>importHeaderfrom'./components/Header.vue';importFooterfrom'./components/Footer.vue';exportdefault{components: {Header,Footer, }, }; 在m...
theme-default:fix display text for danger container (#2849) (6d15511)@Taiga Features plugin-last-updated:injectlastUpdatedTimestampto$page(#1778) (2345902)@Christoph Wiechert 1.8.2(2021-02-18) Bug Fixes $default-theme:sidebar groups are not opened when directly navigating to these pages (fix#...
<template><Header/><nuxt/><!-- 这里将被 Markdown 文件的内容替换 --><Footer/></template>importHeaderfrom'./components/Header.vue';importFooterfrom'./components/Footer.vue';exportdefault{components:{Header,Footer,},}; 在my-docs/config.js中配置使用自定义主题: module.exports={theme:'my-theme...
[default-theme-home]: https://kelsen.huerpu.cc 3.1首页标题和标语 📁.vuepress文件夹内新建📁public文件夹,放入kelsen.png和favicon.ico文件,heroImage: /kelsen.png设置为kelsen的头像,heroText和tagline分别为首页标题和标语。 重启项目可以看到主页如下 ...