The vuepress-plugin-simple-blog
is a plugin for vuepress v2 that can make your vuepress be a simple blog rapidly, and this plugin is referring to the official plugin @vuepress/plugin-blog.
Add plugin to your vuepress v2 project:
yarn add -D vuepress-plugin-simple-blog
# or
npm i -D vuepress-plugin-simple-blog
To use this plugin, just add plugin name to plugins
option of .vuepress/config.js
.
module.exports = {
// ...
plugins: ["vuepress-plugin-simple-blog"],
// ...
};
See the document to read more of plugin.
See Customization section of document.
See Client APIs section of document.
MIT