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.
17 lines
302 B
17 lines
302 B
2 years ago
|
export default {
|
||
|
// 抽屉组件
|
||
|
drawer:{
|
||
|
// 是否显示
|
||
|
show:false,
|
||
|
// 点击遮罩是否关闭
|
||
|
mask:true,
|
||
|
// // 是否显示关闭按钮
|
||
|
// closeBtn:true,
|
||
|
// 抽屉宽度
|
||
|
width:'40%',
|
||
|
// 抽屉位置
|
||
|
placement:'left',
|
||
|
// 权重
|
||
|
zIndex: 100,
|
||
|
}
|
||
|
}
|