forked from alibaba/lowcode-materials
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsnippets.ts
More file actions
34 lines (34 loc) · 784 Bytes
/
snippets.ts
File metadata and controls
34 lines (34 loc) · 784 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
module.exports = [
{
title: '侧抽屉',
screenshot: 'https://img.alicdn.com/tfs/TB1o0t4u9f2gK0jSZFPXXXsopXa-112-64.png',
schema: {
componentName: 'Drawer',
props: {
prefix: 'next-',
triggerType: 'click',
closeable: true,
placement: 'right',
hasMask: true,
isAutoContainer: true,
visible: true,
},
},
},
{
title: '底部抽屉',
screenshot: 'https://img.alicdn.com/tfs/TB1YOd2u2b2gK0jSZK9XXaEgFXa-112-64.png',
schema: {
componentName: 'Drawer',
props: {
prefix: 'next-',
triggerType: 'click',
closeable: true,
placement: 'bottom',
hasMask: true,
isAutoContainer: true,
visible: true,
},
},
},
];