qtsk-vue3 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
package/README.md ADDED
@@ -0,0 +1,2 @@
1
+ # qtsk-ui
2
+ qtsk-ui组件库
@@ -0,0 +1,12 @@
1
+ # qtsk-vue3
2
+
3
+ ## package引用方法
4
+ 1.安装```npm install qtsk-vue3```
5
+ 2.在main.js中引入
6
+ ```
7
+ import qv3 from 'qtsk-vue3/index.js'
8
+ import 'qtzy-vue3/style/index.less'
9
+ ```
10
+ ## package menu
11
+
12
+ ## 控件使用
@@ -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]
@@ -0,0 +1,11 @@
1
+ <template>
2
+ <div>
3
+ <button>我是一个按钮</button>
4
+ </div>
5
+ </template>
6
+
7
+ <script setup>
8
+ defineOptions({
9
+ name: 'QTButton',
10
+ })
11
+ </script>