# 快速上手
# 安装
# 安装 VuePress
请参考 Vuepress 官方文档,点此查看
# 安装插件
使用 yarn
安装 vuepress-plugin-demo-container
组件:
yarn add vuepress-plugin-demo-container -D
或者使用 npm
安装它:
npm i vuepress-plugin-demo-container --save-dev
如果你的网络环境不佳,推荐使用 cnpm。
# 配置插件
打开 .vuepress/config.js 文件,然后在合适的位置引用插件:
module.exports = {
...
plugins: ['demo-container']
...
}
如果你对 VuePress 插件配置不是很了解,请点这里:使用插件
配置完毕后,cd 到 .vuepress 文件夹同级目录,运行 vuepress dev .
即可启动文档服务
# 使用
注意
为了展示如何编写示例, 用于标记代码部分结束的三点增加了空格分隔,使用时需要将空格去除。
在 Markdown 文件中编写以下代码:
::: demo 此处放置代码示例的描述信息,支持 `Markdown` 语法,**描述信息只支持单行**
```html
<template>
<div class="red-center-text">
<p>{{ message }}</p>
<input v-model="message" placeholder="Input something..."/>
</div>
</template>
<script>
export default {
data() {
return {
message: 'Hello Vue'
}
}
}
</script>
<style>
.red-center-text {
color: #ff7875;
text-align: center;
}
</style>
` ` ` <= 删除左侧空格
:::
运行效果如下
Hello Vue
复制