-
Notifications
You must be signed in to change notification settings - Fork 11
/
KitchenSink.js
60 lines (59 loc) · 1.28 KB
/
KitchenSink.js
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
// Brutalism library support
import {
Anno,
Alert,
ButtonGroup,
Button,
Col,
Divider,
Dropdown,
Dropzone,
FileInput,
Fold,
Footer,
Link,
Grid,
Icon,
InputScroll,
Input,
Menus,
PanelInfo,
Panel,
Row,
Select,
Tabs,
TextArea,
Toggle,
Wrapper,
WrapNode,
FilePicker,
ColorPicker,
} from "brutalism";
Vue.component("Anno", Anno);
Vue.component("Alert", Alert);
Vue.component("Button-Group", ButtonGroup);
Vue.component("Button", Button);
Vue.component("Col", Col);
Vue.component("Divider", Divider);
Vue.component("Dropdown", Dropdown);
Vue.component("Dropzone", Dropzone);
Vue.component("File-Input", FileInput);
Vue.component("File-Picker", FilePicker);
Vue.component("Color-Picker", ColorPicker);
Vue.component("Fold", Fold);
Vue.component("Footer", Footer);
Vue.component("Grid", Grid);
Vue.component("Icon", Icon);
Vue.component("Input-Scroll", InputScroll);
Vue.component("Input", Input);
Vue.component("Link", Link);
Vue.component("Menus", Menus);
Vue.component("Panel-Info", PanelInfo);
Vue.component("Panel", Panel);
Vue.component("Row", Row);
Vue.component("Select", Select);
Vue.component("Tabs", Tabs);
Vue.component("TextArea", TextArea);
Vue.component("Toggle", Toggle);
Vue.component("Wrapper", Wrapper);
Vue.component("wrap-node", WrapNode);