diff --git a/src/components/dropdown/dropdown.vue b/src/components/dropdown/dropdown.vue index 0f3509a..feed5cc 100644 --- a/src/components/dropdown/dropdown.vue +++ b/src/components/dropdown/dropdown.vue @@ -53,7 +53,10 @@ default () { return !this.$IVIEW || this.$IVIEW.transfer === '' ? false : this.$IVIEW.transfer; } - } + }, + transferClassName: { + type: String + }, }, computed: { transition () { @@ -61,7 +64,8 @@ }, dropdownCls () { return { - [prefixCls + '-transfer']: this.transfer + [prefixCls + '-transfer']: this.transfer, + [this.transferClassName]: this.transferClassName }; }, relClasses () { -- libgit2 0.21.4