You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
reagent_manage/docs/frontend/directives.md

34 lines
528 B

6 years ago
# 指令
## el-dialog拖拽
已全局注册,使用方式:
6 years ago
```html
6 years ago
<el-dialog v-drag-dialog/>
```
## 波纹
从[quasar](https://quasar.dev/vue-directives/material-ripple)处搬运
已全局注册,使用方式:
6 years ago
```html
6 years ago
<div v-ripple/>
```
更多细节请根据quasar文档使用
## element-ui自带
### clickOutside
未全局注册,使用方式:
```js
//引入
import ClickOutside from 'element-ui/lib/utils/clickoutside'
//组件中注册
directives: {ClickOutside}
//使用
<div v-click-outside="..."/>
```