Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lq782655835/vuepress-plugin-element-ui
vuepress plugin to extend elementui base on markdown-it-container
https://github.com/lq782655835/vuepress-plugin-element-ui
element-ui markdown-it-plugin vuepress vuepress-plugin
Last synced: 17 days ago
JSON representation
vuepress plugin to extend elementui base on markdown-it-container
- Host: GitHub
- URL: https://github.com/lq782655835/vuepress-plugin-element-ui
- Owner: lq782655835
- Created: 2020-01-17T04:57:05.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-11T20:54:18.000Z (almost 2 years ago)
- Last Synced: 2024-10-14T02:44:31.084Z (about 1 month ago)
- Topics: element-ui, markdown-it-plugin, vuepress, vuepress-plugin
- Language: JavaScript
- Homepage: https://lq782655835.github.io/vuepress-plugin-element-ui/
- Size: 1.06 MB
- Stars: 20
- Watchers: 2
- Forks: 1
- Open Issues: 26
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# [vuepress-plugin-element-ui](https://superbiger.github.io/vuepress-plugin-tabs/)
Vuepress plugin - extend [Element UI](https://github.com/ElemeFE/element) base on markdown-it-container
## Docs
> https://lq782655835.github.io/vuepress-plugin-element-ui/## Install
Important: This plugin requires VuePress >= 1.0.0, for now you can try it via yarn add vuepress@next -D```shell
yarn add vuepress-plugin-element-ui -D
``````javascript
// .vuepress/config.js
module.exports = {
plugins: [
'element-ui'
]
}
```## Usage
~~~ md
:::: el-tabs::: el-tab-pane label=title
__markdown content__
:::::: el-tab-pane label=javascript
``` javascript
() => {
console.log('Javascript code example')
}
```
:::::::
~~~