We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 501942f commit 34847f0Copy full SHA for 34847f0
src/components/SettingDrawer/SettingDrawer.vue
@@ -6,7 +6,6 @@
6
@close="onClose"
7
:closable="false"
8
:visible="visible"
9
- :handle="handle"
10
>
11
<div class="setting-drawer-index-content">
12
@@ -161,7 +160,7 @@
161
160
</a-alert>
162
</div>
163
164
- <div class="setting-drawer-index-handle" @click="toggle">
+ <div class="setting-drawer-index-handle" @click="toggle" slot="handle">
165
<a-icon type="setting" v-if="!visible"/>
166
<a-icon type="close" v-else/>
167
@@ -185,8 +184,7 @@ export default {
185
184
data () {
186
return {
187
visible: false,
188
- colorList,
189
- handle: <div/>
+ colorList
190
}
191
},
192
watch: {
0 commit comments