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

528 B

指令

el-dialog拖拽

已全局注册,使用方式:

<el-dialog v-drag-dialog/>

波纹

quasar处搬运 已全局注册,使用方式:

<div v-ripple/>

更多细节请根据quasar文档使用

element-ui自带

clickOutside

未全局注册,使用方式:

//引入
import ClickOutside from 'element-ui/lib/utils/clickoutside'

//组件中注册
directives: {ClickOutside}

//使用
<div v-click-outside="..."/>