Blame view

src/index.js 2.41 KB
3735e376   jingsam   sort components
1
2
3
4
5
  import Affix from './components/affix';
  import Alert from './components/alert';
  import BackTop from './components/back-top';
  import Badge from './components/badge';
  import Breadcrumb from './components/breadcrumb';
7fa943eb   梁灏   init
6
  import Button from './components/button';
3735e376   jingsam   sort components
7
  import Card from './components/card';
0a48ac45   梁灏   Input add readonl...
8
  import Cascader from './components/cascader';
3735e376   jingsam   sort components
9
10
11
  import Checkbox from './components/checkbox';
  import Circle from './components/circle';
  import Collapse from './components/collapse';
7fa943eb   梁灏   init
12
13
  import Icon from './components/icon';
  import Input from './components/input';
7fa943eb   梁灏   init
14
  import InputNumber from './components/input-number';
3735e376   jingsam   sort components
15
16
17
18
  import LoadingBar from './components/loading-bar';
  import Message from './components/message';
  import Modal from './components/modal';
  import Notice from './components/notice';
7fa943eb   梁灏   init
19
  import Page from './components/page';
3735e376   jingsam   sort components
20
  import Poptip from './components/poptip';
7fa943eb   梁灏   init
21
  import Progress from './components/progress';
3735e376   jingsam   sort components
22
23
  import Radio from './components/radio';
  import Slider from './components/slider';
7fa943eb   梁灏   init
24
25
  import Spin from './components/spin';
  import Steps from './components/steps';
3735e376   jingsam   sort components
26
27
28
  import Switch from './components/switch';
  import Tag from './components/tag';
  import Timeline from './components/timeline';
dce3e753   梁灏   add Tooltip compo...
29
  import Tooltip from './components/tooltip';
3735e376   jingsam   sort components
30
31
  import { Row, Col } from './components/layout';
  import { Select, Option, OptionGroup } from './components/select';
7fa943eb   梁灏   init
32
33
  
  const iview = {
3735e376   jingsam   sort components
34
35
36
37
38
39
      Affix,
      Alert,
      BackTop,
      Badge,
      Breadcrumb,
      BreadcrumbItem: Breadcrumb.Item,
5e8a2915   jingsam   add umd library b...
40
      iButton: Button,
c67c7095   梁灏   add some component
41
      ButtonGroup: Button.Group,
3735e376   jingsam   sort components
42
      Card,
0a48ac45   梁灏   Input add readonl...
43
      Cascader,
3735e376   jingsam   sort components
44
45
46
      Checkbox,
      CheckboxGroup: Checkbox.Group,
      Circle,
5e8a2915   jingsam   add umd library b...
47
      iCol: Col,
3735e376   jingsam   sort components
48
      Collapse,
7fa943eb   梁灏   init
49
      Icon,
5e8a2915   jingsam   add umd library b...
50
      iInput: Input,
3735e376   jingsam   sort components
51
52
53
54
55
      InputNumber,
      LoadingBar,
      Message,
      Modal,
      Notice,
5e8a2915   jingsam   add umd library b...
56
      iOption: Option,
f36b2970   jingsam   merge upstream/ma...
57
      OptionGroup,
3735e376   jingsam   sort components
58
59
60
61
      Page,
      Panel: Collapse.Panel,
      Poptip,
      Progress,
7fa943eb   梁灏   init
62
      Radio,
c67c7095   梁灏   add some component
63
      RadioGroup: Radio.Group,
7fa943eb   梁灏   init
64
      Row,
5e8a2915   jingsam   add umd library b...
65
      iSelect: Select,
3735e376   jingsam   sort components
66
67
68
69
70
      Slider,
      Spin,
      Step: Steps.Step,
      Steps,
      Switch,
7fa943eb   梁灏   init
71
      Tag,
7fa943eb   梁灏   init
72
      Timeline,
c67c7095   梁灏   add some component
73
      TimelineItem: Timeline.Item,
5e8a2915   jingsam   add umd library b...
74
      Tooltip
7fa943eb   梁灏   init
75
76
  };
  
343abe50   jingsam   add iview.install()
77
78
  const install = function (Vue) {
      Object.keys(iview).forEach((key) => {
5e8a2915   jingsam   add umd library b...
79
          Vue.component(key, iview[key])
451b52ce   梁灏   Global install iView
80
81
82
83
      });
  
      Vue.prototype.$Loading = LoadingBar;
      Vue.prototype.$Message = Message;
2f71cf55   梁灏   fixed bug $Modal
84
      Vue.prototype.$Modal = Modal;
451b52ce   梁灏   Global install iView
85
86
      Vue.prototype.$Notice = Notice;
  };
343abe50   jingsam   add iview.install()
87
88
89
90
  
  // auto install
  if (typeof window !== 'undefined' && window.Vue) {
      install(window.Vue);
451b52ce   梁灏   Global install iView
91
  }
343abe50   jingsam   add iview.install()
92
93
  
  module.exports = Object.assign(iview, {install});