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: 3 months 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 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-11T20:54:18.000Z (about 3 years ago)
- Last Synced: 2025-05-24T16:44:07.691Z (7 months 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: 1
- 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')
}
```
:::
::::
~~~