-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.js
184 lines (181 loc) · 6.25 KB
/
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
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
/**
* Created by qianqing on 2017/6/22.
*/
import Actionsheet from './src/components/actionsheet/index.vue';
import AjaxPlugin from './src/plugins/ajax/index.js';
import Alert from './src/components/alert/index.vue';
import AlertPlugin from './src/plugins/alert/index.js';
import Array2stringFilter from './src/filters/array2String.js';
import Badge from './src/components/badge/index.vue';
import base64 from './src/tools/base64/index.js';
import ButtonTab from './src/components/button-tab/button-tab.vue';
import ButtonTabItem from './src/components/button-tab/button-tab-item.vue';
import Cell from './src/components/cell/index.vue';
import CellBox from './src/components/cell-box/index.vue';
import CellFormPreview from './src/components/cell-form-preview/index.vue';
import Checker from './src/components/checker/checker.vue';
import CheckerItem from './src/components/checker/checker-item.vue';
import CheckList from './src/components/checklist/index.vue';
import ChinaAddressData from './src/datas/china_address.json';
import ChinaAddressV1Data from './src/datas/china_address_v1.json';
import ClickOutsideDirective from './src/directives/click-outside/index.js';
import Confirm from './src/components/confirm/index.vue';
import ConfirmPlugin from './src/plugins/confirm/index.js';
import cookie from './src/tools/cookie/index.js';
import dateFormat from './src/tools/date/format.js';
import dateRange from './src/tools/date/range.js';
import Datetime from './src/components/datetime/index.vue';
import debounce from './src/tools/debounce/index.js';
import DevicePlugin from './src/plugins/device/index.js';
import Divider from './src/components/divider/index.vue';
import Flexbox from './src/components/flexbox/flexbox.vue';
import FlexboxItem from './src/components/flexbox/flexbox-item.vue';
import FormatTimeFilter from './src/filters/format-time.js';
import FormPreview from './src/components/form-preview/index.vue';
import FriendlyTimeFilter from './src/filters/friendly-time.js';
import Group from './src/components/group/index.vue';
import GroupTitle from './src/components/group-title/index.vue';
import Icon from './src/components/icon/index.vue';
import InlineCalendar from './src/components/inline-calendar/index.vue'
import InlineDesc from './src/components/inline-desc/index.vue';
import InviewDirective from './src/directives/inview/index.js';
import Loading from './src/components/loading/index.vue';
import LoadingPlugin from './src/plugins/loading/index.js';
import LoadMore from './src/components/load-more/index.vue';
import LocalePlugin from './src/plugins/locale/index.js';
import md5 from './src/tools/md5/index.js';
import Msg from './src/components/msg/index.vue';
import Name2valueFilter from './src/filters/name2value.js';
import numberComma from './src/tools/number/comma.js';
import numberPad from './src/tools/number/pad.js';
import numberRandom from './src/tools/number/random.js';
import numberRange from './src/tools/number/range.js';
import Panel from './src/components/panel/index.vue';
import Picker from './src/components/picker/index.vue';
import Popup from './src/components/popup/index.vue';
import PopupPicker from './src/components/popup-picker/index.vue';
import querystring from './src/tools/querystring/index.js';
import Radio from './src/components/radio/index.vue';
import Rater from './src/components/rater/index.vue';
import Scroller from './src/components/scroller/index.vue';
import Search from './src/components/search/index.vue';
import Spinner from './src/components/spinner/index.vue';
import Step from './src/components/step/step.vue';
import StepItem from './src/components/step/step-item.vue';
import Sticky from './src/components/sticky/index.vue';
import stringTrim from './src/tools/string/trim.js';
import Swiper from './src/components/swiper/swiper.vue';
import SwiperItem from './src/components/swiper/swiper-item.vue';
import Tab from './src/components/tab/tab.vue';
import Tabbar from './src/components/tabbar/tabbar.vue';
import TabbarItem from './src/components/tabbar/tabbar-item.vue';
import TabItem from './src/components/tab/tab-item.vue';
import throttle from './src/tools/throttle/index.js';
import Timeline from './src/components/timeline/timeline.vue';
import TimelineItem from './src/components/timeline/timeline-item.vue';
import Tip from './src/components/tip/index.vue';
import Toast from './src/components/toast/index.vue';
import ToastPlugin from './src/plugins/toast/index.js';
import TransferDom from './src/directives/transfer-dom/index.js';
import trim from './src/tools/string/trim';
import Value2nameFilter from './src/filters/value2name.js';
import ViewBox from './src/components/view-box/index.vue';
import WechatPlugin from './src/plugins/wechat/index.js';
import MAddress from './src/components/m-address/index.vue';
import MButton from './src/components/m-button/index.vue';
import MDialog from './src/components/m-dialog/index.vue';
import MHeader from './src/components/m-header/index.vue';
import MInput from './src/components/m-input/index.vue';
import MNumber from './src/components/m-number/index.vue';
import MTextarea from './src/components/m-textarea/index.vue';
import MSwitch from './src/components/m-switch/index.vue';
export {
Actionsheet,
AjaxPlugin,
Alert,
AlertPlugin,
Array2stringFilter,
Badge,
base64,
ButtonTab,
ButtonTabItem,
Cell,
CellBox,
CellFormPreview,
Checker,
CheckerItem,
CheckList,
ChinaAddressData,
ChinaAddressV1Data,
ClickOutsideDirective,
Confirm,
ConfirmPlugin,
cookie,
dateFormat,
dateRange,
Datetime,
debounce,
DevicePlugin,
Divider,
Flexbox,
FlexboxItem,
FormatTimeFilter,
FormPreview,
FriendlyTimeFilter,
Group,
GroupTitle,
Icon,
InlineCalendar,
InlineDesc,
InviewDirective,
Loading,
LoadingPlugin,
LoadMore,
LocalePlugin,
md5,
Msg,
Name2valueFilter,
numberComma,
numberPad,
numberRandom,
numberRange,
Panel,
Picker,
Popup,
PopupPicker,
querystring,
Radio,
Rater,
Scroller,
Search,
Spinner,
Step,
StepItem,
Sticky,
stringTrim,
Swiper,
SwiperItem,
Tab,
Tabbar,
TabbarItem,
TabItem,
throttle,
Timeline,
TimelineItem,
Tip,
Toast,
ToastPlugin,
TransferDom,
trim,
Value2nameFilter,
ViewBox,
WechatPlugin,
MAddress,
MButton,
MDialog,
MHeader,
MInput,
MNumber,
MTextarea,
MSwitch
};