UNPKG

1.63 kBJavaScriptView Raw
1/* @flow */
2
3import '../common/css/var.css'
4import '../common/css/mixin.css'
5import '../common/css/iconfont.css'
6window.$mask = []
7
8import {install as dialogPlugin} from './dialog/index.js'
9import {install as datepickerPlugin} from './datepicker/index.js'
10import {install as toastPlugin} from './toast/index.js'
11const plugins = {
12 install: function(Vue) {
13 dialogPlugin(Vue)
14 datepickerPlugin(Vue)
15 toastPlugin(Vue)
16 }
17}
18import tButton from './button/index.js'
19import tHeader from './header/index.js'
20import tPage from './page/index.js'
21import tMask from './mask/index.js'
22import tDialog from './dialog/index.js'
23import tScroll from './scroll/index.js'
24import tPopup from './popup/index.js'
25import tDatepicker from './datepicker/index.js'
26import tPicker from './picker/index.js'
27import tCell from './cell/index.js'
28import tActionsheet from './actionSheet/index.js'
29import tToast from './toast/index.js'
30import tCellInput from './cellInput/index.js'
31import tSwitch from './switch/index.js'
32import tGroup from './group/index.js'
33import tSort from './sort/index.js'
34import tGrid from './grid/index.js'
35import tCarousel from './carousel/index.js'
36import tNotice from './notice/index.js'
37import tRow from './row/index.js'
38import tSearch from './search/index.js'
39import tGestures from './gestures/index.js'
40import tKeyboard from './keyboard/index.js'
41
42export {
43 tButton,
44 tHeader,
45 tPage,
46 tMask,
47 tDialog,
48 tScroll,
49 tPopup,
50 tDatepicker,
51 tPicker,
52 tCell,
53 tActionsheet,
54 plugins,
55 tToast,
56 tCellInput,
57 tSwitch,
58 tGroup,
59 tSort,
60 tGrid,
61 tCarousel,
62 tNotice,
63 tRow,
64 tSearch,
65 tGestures,
66 tKeyboard
67}
\No newline at end of file