Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

Awesome Lists containing this project

README

        

# [vuepress-plugin-element-ui](https://superbiger.github.io/vuepress-plugin-tabs/)

Version
License

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')
}
```
:::

::::
~~~