-
Notifications
You must be signed in to change notification settings - Fork 351
/
Copy pathindex.js
34 lines (30 loc) · 789 Bytes
/
index.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
import BaseInput from "./Inputs/BaseInput.vue";
import BaseCheckbox from "./BaseCheckbox.vue";
import BaseRadio from "./BaseRadio.vue";
import BaseDropdown from "./BaseDropdown.vue";
import BaseTable from "./BaseTable.vue";
import BaseButton from "./BaseButton";
import BaseAlert from "./BaseAlert";
import BaseNav from "./BaseNav";
import Modal from "./Modal";
import CloseButton from "./CloseButton";
import BasePagination from "./BasePagination";
import Card from "./Cards/Card.vue";
import StatsCard from "./Cards/StatsCard.vue";
import SidebarPlugin from "./SidebarPlugin/index";
export {
BaseInput,
Card,
Modal,
CloseButton,
StatsCard,
BaseTable,
BaseCheckbox,
BaseRadio,
BaseDropdown,
BaseButton,
BaseAlert,
SidebarPlugin,
BaseNav,
BasePagination
};