文档 | 效果 | 本仓库的 gitee 镜像
- 这个主题的初衷是打造一个好用的、面向程序员的
知识管理工具
- 轻松构建一个
结构化
的知识库,让你的知识海洋像一本本书一样清晰易读。 - 博客功能提供一种知识的
碎片化
形态,并支持个性化博客配置。 简洁高效
,以 Markdown 为中心的项目结构。内置自动化工具,以更少的配置完成更多的事。配合多维索引快速定位每个知识点。
# clone the project
git clone https://github.com/xugaoyi/vuepress-theme-vdoing.git
# enter the project directory
cd vuepress-theme-vdoing
# install dependency
npm install # or yarn install
# develop
npm run dev # or yarn dev
Copyright (c) 2019-present Evan Xu
https://mermaid-js.github.io/mermaid/#/
stateDiagram
direction LR
[*] --> A
A --> B
B --> C
state B {
direction LR
a --> b
}
B --> D
<script>
export default{
data(){
return {
msg:""
}
},
created(){
console.log(this.msg);
},
async mounted(){
const container = document.querySelector('#xmind')
const res = await fetch('https://files.etoury.com/brook-pdf/test.xmind')
const viewer = new XMindEmbedViewer({
el: '#xmind',
file: await res.arrayBuffer(),
styles: {
'height': '800px',
'width': '100%'
},
})
}
}
</script>