qtsk-vue3 0.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -0
- package/package/README.md +12 -0
- package/package/component.js +99 -0
- package/package/components/button/index.vue +11 -0
- package/package/data/city.json +1 -0
- package/package/data/subway.json +13148 -0
- package/package/index.js +18 -0
- package/package/package.json +9 -0
- package/package/style/index.less +0 -0
- package/package/style/root.css +108 -0
- package/package/utils/common.js +55 -0
- package/package.json +21 -0
package/README.md
ADDED
@@ -0,0 +1,99 @@
|
|
1
|
+
/* import McLink from './components/link'
|
2
|
+
import McBreadcrumb from './components/breadcrumb'
|
3
|
+
import McButton from './components/button'
|
4
|
+
import McCheckbox from './components/checkbox'
|
5
|
+
import McCheckboxGroup from './components/checkbox-group'
|
6
|
+
import McRadio from './components/radio'
|
7
|
+
import McRadioGroup from './components/radio-group'
|
8
|
+
import McProgress from './components/progress'
|
9
|
+
import McInput from './components/input'
|
10
|
+
import McSlide from './components/slide'
|
11
|
+
import McSwitch from './components/switch'
|
12
|
+
import McTab from './components/tab'
|
13
|
+
import McTextarea from './components/textarea'
|
14
|
+
import McTree from './components/tree'
|
15
|
+
import McCity from './components/city'
|
16
|
+
import McCityPicker from './components/city-picker'
|
17
|
+
import McAddress from './components/address'
|
18
|
+
import McFuzzySearch from './components/fuzzy-search'
|
19
|
+
import McTip from './components/tip'
|
20
|
+
import McPopup from './components/popup'
|
21
|
+
import McTable from './components/table'
|
22
|
+
import McTableColumn from './components/table-column'
|
23
|
+
import McPagination from './components/pagination'
|
24
|
+
import McForm from './components/form'
|
25
|
+
import McFormItem from './components/form-item'
|
26
|
+
import McSelect from './components/select'
|
27
|
+
import McSelectOption from './components/select-option'
|
28
|
+
import McDatePicker from './components/date-picker'
|
29
|
+
import McMonthPicker from './components/month-picker'
|
30
|
+
import McDropdown from './components/dropdown'
|
31
|
+
import McImport from './components/import'
|
32
|
+
// import McNotification from './components/notification'
|
33
|
+
import McCollapse from './components/collapse'
|
34
|
+
import McCollapseItem from './components/collapse-item'
|
35
|
+
import McCollapseTransition from './components/collapse-transition'
|
36
|
+
import McUpload from './components/upload'
|
37
|
+
import McDepartmentTree from './components/department-tree'
|
38
|
+
import McDepartmentPicker from './components/department-picker'
|
39
|
+
import McPermissionTree from './components/permission-tree'
|
40
|
+
import McLabel from './components/label'
|
41
|
+
import McJobFuncPicker from './components/job-func'
|
42
|
+
import McAmountRange from './components/amount-range'
|
43
|
+
|
44
|
+
// 新版table控件 支持除jsx外的调用方式
|
45
|
+
import {McTableV2,McTableV2Column} from './components/tableV2'
|
46
|
+
|
47
|
+
export default [
|
48
|
+
McLink,
|
49
|
+
McBreadcrumb,
|
50
|
+
McButton,
|
51
|
+
McCheckbox,
|
52
|
+
McCheckboxGroup,
|
53
|
+
McRadio,
|
54
|
+
McRadioGroup,
|
55
|
+
McProgress,
|
56
|
+
McInput,
|
57
|
+
McSlide,
|
58
|
+
McSwitch,
|
59
|
+
McTab,
|
60
|
+
McTextarea,
|
61
|
+
McTree,
|
62
|
+
McCity,
|
63
|
+
McCityPicker,
|
64
|
+
McAddress,
|
65
|
+
McFuzzySearch,
|
66
|
+
McTip,
|
67
|
+
McPopup,
|
68
|
+
McTable,
|
69
|
+
McTableColumn,
|
70
|
+
McPagination,
|
71
|
+
McForm,
|
72
|
+
McFormItem,
|
73
|
+
McSelect,
|
74
|
+
McSelectOption,
|
75
|
+
McDatePicker,
|
76
|
+
McMonthPicker,
|
77
|
+
McDropdown,
|
78
|
+
McImport,
|
79
|
+
// McNotification,
|
80
|
+
McCollapse,
|
81
|
+
McCollapseItem,
|
82
|
+
McCollapseTransition,
|
83
|
+
McUpload,
|
84
|
+
McDepartmentTree,
|
85
|
+
McDepartmentPicker,
|
86
|
+
McPermissionTree,
|
87
|
+
McLabel,
|
88
|
+
McJobFuncPicker,
|
89
|
+
|
90
|
+
// new version table package
|
91
|
+
McTableV2,
|
92
|
+
McTableV2Column,
|
93
|
+
|
94
|
+
McAmountRange,
|
95
|
+
]
|
96
|
+
*/
|
97
|
+
|
98
|
+
import QTButton from './components/button/index.vue'
|
99
|
+
export default [QTButton]
|