br-dionysus 1.16.6 → 1.16.7
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 +22 -390
- package/attributes.json +1 -1
- package/dist/br-dionysus.es.js +3445 -3425
- package/dist/br-dionysus.umd.js +9 -9
- package/dist/index.css +1 -1
- package/dist/packages/MSelectTable/src/MSelectTable.vue.d.ts +4 -4
- package/dist/packages/MSelectTableV1/src/MSelectTableV1.vue.d.ts +1 -1
- package/dist/packages/MTable/src/MTable.vue.d.ts +1 -1
- package/dist/packages/MTableV2/src/MTableV2.vue.d.ts +19 -5
- package/package.json +42 -42
- package/packages/MSelectTable/docs/DemoTest1.vue +92 -0
- package/packages/MSelectTable/docs/DemoTest2.vue +95 -0
- package/packages/MSelectTable/docs/DemoTest3.vue +113 -0
- package/packages/MSelectTable/docs/DemoTest4.vue +114 -0
- package/packages/MSelectTable/docs/demo.vue +11 -195
- package/packages/MSelectTable/src/MSelectTable.vue +97 -57
- package/packages/MTableV2/src/MTableV2.vue +19 -2
- package/tags.json +1 -1
- package/web-types.json +1 -1
package/README.md
CHANGED
|
@@ -626,208 +626,24 @@ const options: Option[] = [{
|
|
|
626
626
|
|
|
627
627
|
<template>
|
|
628
628
|
<div>
|
|
629
|
-
|
|
630
|
-
<
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
:tableTitle="commodityOptionsTitle"
|
|
637
|
-
:options="options"
|
|
638
|
-
:keywords="{ label: 'ApprovedQtyPU', value: 'DocNo' }"
|
|
639
|
-
@selected="selected"
|
|
640
|
-
@selectMultiple="selectMultiple"
|
|
641
|
-
tableHeight="200"
|
|
642
|
-
@toPage="toPage"
|
|
643
|
-
:total="total"
|
|
644
|
-
scrollbarAlwaysOn
|
|
645
|
-
filterable
|
|
646
|
-
remote
|
|
647
|
-
multiple
|
|
648
|
-
allowCreate
|
|
649
|
-
border
|
|
650
|
-
@selectChange="selectChange"
|
|
651
|
-
:remoteMethod="remoteMethod"
|
|
652
|
-
>
|
|
653
|
-
<template #auxiliary>
|
|
654
|
-
辅助信息的插槽
|
|
655
|
-
</template>
|
|
656
|
-
</m-select-table>
|
|
657
|
-
<p>多选单绑定的value为字符串类型</p>
|
|
658
|
-
<p>第二个选择器的值: {{ code2 }}</p>
|
|
659
|
-
<m-select-table
|
|
660
|
-
class="u-select"
|
|
661
|
-
ref="selectRef"
|
|
662
|
-
v-model="code2"
|
|
663
|
-
:name="code2Name"
|
|
664
|
-
placeholder="请选择单号"
|
|
665
|
-
:tableTitle="commodityOptionsTitle"
|
|
666
|
-
:options="options"
|
|
667
|
-
:keywords="{ label: 'ApprovedQtyPU', value: 'DocNo' }"
|
|
668
|
-
@selected="selected"
|
|
669
|
-
@selectMultiple="selectMultiple"
|
|
670
|
-
tableHeight="200"
|
|
671
|
-
@toPage="toPage"
|
|
672
|
-
:total="total"
|
|
673
|
-
scrollbarAlwaysOn
|
|
674
|
-
filterable
|
|
675
|
-
remote
|
|
676
|
-
multiple
|
|
677
|
-
border
|
|
678
|
-
:remoteMethod="remoteMethod"
|
|
679
|
-
></m-select-table>
|
|
680
|
-
<p>单选</p>
|
|
681
|
-
<p>第三个择器的值: {{ code3 }}</p>
|
|
682
|
-
<m-select-table
|
|
683
|
-
class="u-select"
|
|
684
|
-
ref="selectRef"
|
|
685
|
-
v-model="code3"
|
|
686
|
-
placeholder="请选择单号"
|
|
687
|
-
:tableTitle="commodityOptionsTitle"
|
|
688
|
-
:options="options"
|
|
689
|
-
:keywords="{ label: 'ApprovedQtyPU', value: 'DocNo' }"
|
|
690
|
-
@selected="selected"
|
|
691
|
-
@selectMultiple="selectMultiple"
|
|
692
|
-
tableHeight="200"
|
|
693
|
-
@toPage="toPage"
|
|
694
|
-
:total="total"
|
|
695
|
-
scrollbarAlwaysOn
|
|
696
|
-
filterable
|
|
697
|
-
remote
|
|
698
|
-
allowCreate
|
|
699
|
-
:remoteMethod="remoteMethod"
|
|
700
|
-
:popupWidth="800"
|
|
701
|
-
></m-select-table>
|
|
702
|
-
<!--<el-select-->
|
|
703
|
-
<!-- v-model="code2"-->
|
|
704
|
-
<!-- multiple-->
|
|
705
|
-
<!-->-->
|
|
706
|
-
<!-- <el-option-->
|
|
707
|
-
<!-- v-for="item in options"-->
|
|
708
|
-
<!-- :key="item.DocNo"-->
|
|
709
|
-
<!-- :label="item.ApprovedQtyPU"-->
|
|
710
|
-
<!-- :value="item.DocNo"-->
|
|
711
|
-
<!-- ></el-option>-->
|
|
712
|
-
<!--</el-select>-->
|
|
629
|
+
<!--<DemoTest1></DemoTest1>-->
|
|
630
|
+
<el-divider />
|
|
631
|
+
<!--<DemoTest2></DemoTest2>-->
|
|
632
|
+
<!--<el-divider />-->
|
|
633
|
+
<!--<DemoTest3></DemoTest3>-->
|
|
634
|
+
<!--<el-divider />-->
|
|
635
|
+
<!--<DemoTest4></DemoTest4>-->
|
|
713
636
|
</div>
|
|
714
637
|
</template>
|
|
715
638
|
|
|
716
639
|
<script setup lang="ts">
|
|
717
|
-
import
|
|
718
|
-
import
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
prop: 'PRDocType',
|
|
722
|
-
label: '单据类型'
|
|
723
|
-
// minWidth: 200
|
|
724
|
-
}, {
|
|
725
|
-
prop: 'DocNo',
|
|
726
|
-
label: '请购单号'
|
|
727
|
-
// minWidth: 200
|
|
728
|
-
}, {
|
|
729
|
-
prop: 'ApprovedQtyPU',
|
|
730
|
-
// minWidth: 300,
|
|
731
|
-
label: '名称'
|
|
732
|
-
|
|
733
|
-
}, {
|
|
734
|
-
prop: 'ACCode',
|
|
735
|
-
label: '货币'
|
|
736
|
-
// minWidth: 200
|
|
737
|
-
}]
|
|
738
|
-
const selectRef: any = ref<HTMLElement | null>(null)
|
|
739
|
-
|
|
740
|
-
const code = ref<string | number | Array<string | number>>([])
|
|
741
|
-
const code2 = ref<string | number | Array<string | number>>('')
|
|
742
|
-
const code2Name = ref<string | number | Array<string | number>>([])
|
|
743
|
-
const code3 = ref<string | number | Array<string | number>>('')
|
|
744
|
-
|
|
745
|
-
const total = ref(0)
|
|
746
|
-
const options = ref<any[]>([])
|
|
747
|
-
const mockData: any[] = []
|
|
748
|
-
for (let i = 0; i < 1000; i++) {
|
|
749
|
-
mockData.push({
|
|
750
|
-
PRDocType: '测试数据' + (i + 1),
|
|
751
|
-
DocNo: i + 1,
|
|
752
|
-
ApprovedQtyPU: 'ApprovedQtyPU' + (i + 1),
|
|
753
|
-
ACCode: 'ACCode'
|
|
754
|
-
})
|
|
755
|
-
}
|
|
756
|
-
const getDataList = (page: Page = new Page(), str: string = '') => {
|
|
757
|
-
setTimeout(() => {
|
|
758
|
-
options.value = mockData.filter(item => item.PRDocType.includes(str)).slice(0, page.pageSize)
|
|
759
|
-
total.value = mockData.length
|
|
760
|
-
})
|
|
761
|
-
}
|
|
762
|
-
|
|
763
|
-
setTimeout(() => {
|
|
764
|
-
options.value = [{
|
|
765
|
-
PRDocType: 'xxxPRDocType1',
|
|
766
|
-
DocNo: 1,
|
|
767
|
-
ApprovedQtyPU: 'xxxApprovedQtyPU1',
|
|
768
|
-
ACCode: 'xxxACCode1'
|
|
769
|
-
}, {
|
|
770
|
-
PRDocType: 'xxxPRDocType2',
|
|
771
|
-
DocNo: 2,
|
|
772
|
-
ApprovedQtyPU: 'xxxApprovedQtyPU2',
|
|
773
|
-
ACCode: 'xxxACCode2'
|
|
774
|
-
}]
|
|
775
|
-
code.value = [1, 2]
|
|
776
|
-
code2.value = ''
|
|
777
|
-
code2Name.value = ['xxxApprovedQtyPU2', 'xxxApprovedQtyPU3', 'xxxApprovedQtyPU4']
|
|
778
|
-
code3.value = 1
|
|
779
|
-
|
|
780
|
-
// setTimeout(() => {
|
|
781
|
-
// options.value = []
|
|
782
|
-
// }, 2500)
|
|
783
|
-
}, 1000)
|
|
784
|
-
|
|
785
|
-
const selected = (value: string | number | Array<number | string>) => {
|
|
786
|
-
console.log(value)
|
|
787
|
-
// code.value = value
|
|
788
|
-
// console.log('selected',value)
|
|
789
|
-
// // console.log('selected', row)
|
|
790
|
-
}
|
|
791
|
-
|
|
792
|
-
const toPage = (page: Page, str: any) => {
|
|
793
|
-
getDataList(page, str)
|
|
794
|
-
}
|
|
795
|
-
const selectMultiple = (value: string | number | Array<number | string>) => {
|
|
796
|
-
code.value = value
|
|
797
|
-
}
|
|
798
|
-
|
|
799
|
-
const remoteMethod = async (query: string, page: Page = new Page()) => {
|
|
800
|
-
await getData(query, page)
|
|
801
|
-
}
|
|
802
|
-
|
|
803
|
-
const selectChange = (value: string | number | Array<number | string>) => {
|
|
804
|
-
console.log(value)
|
|
805
|
-
}
|
|
806
|
-
const getData = async (query: string, page: any) => {
|
|
807
|
-
return new Promise<void>((resolve) => {
|
|
808
|
-
setTimeout(() => {
|
|
809
|
-
const start = (page.currentPage - 1) * page.pageSize
|
|
810
|
-
options.value = mockData.filter(item => item.PRDocType.includes(query)).slice(start, start + page.pageSize)
|
|
811
|
-
total.value = mockData.length
|
|
812
|
-
resolve()
|
|
813
|
-
}, 500)
|
|
814
|
-
})
|
|
815
|
-
}
|
|
816
|
-
|
|
817
|
-
onMounted(() => {
|
|
818
|
-
getDataList()
|
|
819
|
-
})
|
|
820
|
-
// const filterMethod = (searchValue: string, page: Page) => {
|
|
821
|
-
// // 手动过滤的得 保留一份原始数据
|
|
822
|
-
// const arr = JSON.parse(JSON.stringify(options.value))
|
|
823
|
-
// options.value = arr.filter((item: any) => item.ApprovedQtyPU.toString().includes(searchValue))
|
|
824
|
-
// }
|
|
640
|
+
// import DemoTest1 from 'packages/MSelectTable/docs/DemoTest1.vue'
|
|
641
|
+
// import DemoTest2 from 'packages/MSelectTable/docs/DemoTest2.vue'
|
|
642
|
+
// import DemoTest3 from 'packages/MSelectTable/docs/DemoTest3.vue'
|
|
643
|
+
// import DemoTest4 from 'packages/MSelectTable/docs/DemoTest4.vue'
|
|
825
644
|
</script>
|
|
826
645
|
|
|
827
646
|
<style>
|
|
828
|
-
.u-select {
|
|
829
|
-
width: 240px;
|
|
830
|
-
}
|
|
831
647
|
</style>
|
|
832
648
|
|
|
833
649
|
|
|
@@ -3785,208 +3601,24 @@ const options: Option[] = [{
|
|
|
3785
3601
|
|
|
3786
3602
|
<template>
|
|
3787
3603
|
<div>
|
|
3788
|
-
|
|
3789
|
-
<
|
|
3790
|
-
|
|
3791
|
-
|
|
3792
|
-
|
|
3793
|
-
|
|
3794
|
-
|
|
3795
|
-
:tableTitle="commodityOptionsTitle"
|
|
3796
|
-
:options="options"
|
|
3797
|
-
:keywords="{ label: 'ApprovedQtyPU', value: 'DocNo' }"
|
|
3798
|
-
@selected="selected"
|
|
3799
|
-
@selectMultiple="selectMultiple"
|
|
3800
|
-
tableHeight="200"
|
|
3801
|
-
@toPage="toPage"
|
|
3802
|
-
:total="total"
|
|
3803
|
-
scrollbarAlwaysOn
|
|
3804
|
-
filterable
|
|
3805
|
-
remote
|
|
3806
|
-
multiple
|
|
3807
|
-
allowCreate
|
|
3808
|
-
border
|
|
3809
|
-
@selectChange="selectChange"
|
|
3810
|
-
:remoteMethod="remoteMethod"
|
|
3811
|
-
>
|
|
3812
|
-
<template #auxiliary>
|
|
3813
|
-
辅助信息的插槽
|
|
3814
|
-
</template>
|
|
3815
|
-
</m-select-table>
|
|
3816
|
-
<p>多选单绑定的value为字符串类型</p>
|
|
3817
|
-
<p>第二个选择器的值: {{ code2 }}</p>
|
|
3818
|
-
<m-select-table
|
|
3819
|
-
class="u-select"
|
|
3820
|
-
ref="selectRef"
|
|
3821
|
-
v-model="code2"
|
|
3822
|
-
:name="code2Name"
|
|
3823
|
-
placeholder="请选择单号"
|
|
3824
|
-
:tableTitle="commodityOptionsTitle"
|
|
3825
|
-
:options="options"
|
|
3826
|
-
:keywords="{ label: 'ApprovedQtyPU', value: 'DocNo' }"
|
|
3827
|
-
@selected="selected"
|
|
3828
|
-
@selectMultiple="selectMultiple"
|
|
3829
|
-
tableHeight="200"
|
|
3830
|
-
@toPage="toPage"
|
|
3831
|
-
:total="total"
|
|
3832
|
-
scrollbarAlwaysOn
|
|
3833
|
-
filterable
|
|
3834
|
-
remote
|
|
3835
|
-
multiple
|
|
3836
|
-
border
|
|
3837
|
-
:remoteMethod="remoteMethod"
|
|
3838
|
-
></m-select-table>
|
|
3839
|
-
<p>单选</p>
|
|
3840
|
-
<p>第三个择器的值: {{ code3 }}</p>
|
|
3841
|
-
<m-select-table
|
|
3842
|
-
class="u-select"
|
|
3843
|
-
ref="selectRef"
|
|
3844
|
-
v-model="code3"
|
|
3845
|
-
placeholder="请选择单号"
|
|
3846
|
-
:tableTitle="commodityOptionsTitle"
|
|
3847
|
-
:options="options"
|
|
3848
|
-
:keywords="{ label: 'ApprovedQtyPU', value: 'DocNo' }"
|
|
3849
|
-
@selected="selected"
|
|
3850
|
-
@selectMultiple="selectMultiple"
|
|
3851
|
-
tableHeight="200"
|
|
3852
|
-
@toPage="toPage"
|
|
3853
|
-
:total="total"
|
|
3854
|
-
scrollbarAlwaysOn
|
|
3855
|
-
filterable
|
|
3856
|
-
remote
|
|
3857
|
-
allowCreate
|
|
3858
|
-
:remoteMethod="remoteMethod"
|
|
3859
|
-
:popupWidth="800"
|
|
3860
|
-
></m-select-table>
|
|
3861
|
-
<!--<el-select-->
|
|
3862
|
-
<!-- v-model="code2"-->
|
|
3863
|
-
<!-- multiple-->
|
|
3864
|
-
<!-->-->
|
|
3865
|
-
<!-- <el-option-->
|
|
3866
|
-
<!-- v-for="item in options"-->
|
|
3867
|
-
<!-- :key="item.DocNo"-->
|
|
3868
|
-
<!-- :label="item.ApprovedQtyPU"-->
|
|
3869
|
-
<!-- :value="item.DocNo"-->
|
|
3870
|
-
<!-- ></el-option>-->
|
|
3871
|
-
<!--</el-select>-->
|
|
3604
|
+
<!--<DemoTest1></DemoTest1>-->
|
|
3605
|
+
<el-divider />
|
|
3606
|
+
<!--<DemoTest2></DemoTest2>-->
|
|
3607
|
+
<!--<el-divider />-->
|
|
3608
|
+
<!--<DemoTest3></DemoTest3>-->
|
|
3609
|
+
<!--<el-divider />-->
|
|
3610
|
+
<!--<DemoTest4></DemoTest4>-->
|
|
3872
3611
|
</div>
|
|
3873
3612
|
</template>
|
|
3874
3613
|
|
|
3875
3614
|
<script setup lang="ts">
|
|
3876
|
-
import
|
|
3877
|
-
import
|
|
3878
|
-
|
|
3879
|
-
|
|
3880
|
-
prop: 'PRDocType',
|
|
3881
|
-
label: '单据类型'
|
|
3882
|
-
// minWidth: 200
|
|
3883
|
-
}, {
|
|
3884
|
-
prop: 'DocNo',
|
|
3885
|
-
label: '请购单号'
|
|
3886
|
-
// minWidth: 200
|
|
3887
|
-
}, {
|
|
3888
|
-
prop: 'ApprovedQtyPU',
|
|
3889
|
-
// minWidth: 300,
|
|
3890
|
-
label: '名称'
|
|
3891
|
-
|
|
3892
|
-
}, {
|
|
3893
|
-
prop: 'ACCode',
|
|
3894
|
-
label: '货币'
|
|
3895
|
-
// minWidth: 200
|
|
3896
|
-
}]
|
|
3897
|
-
const selectRef: any = ref<HTMLElement | null>(null)
|
|
3898
|
-
|
|
3899
|
-
const code = ref<string | number | Array<string | number>>([])
|
|
3900
|
-
const code2 = ref<string | number | Array<string | number>>('')
|
|
3901
|
-
const code2Name = ref<string | number | Array<string | number>>([])
|
|
3902
|
-
const code3 = ref<string | number | Array<string | number>>('')
|
|
3903
|
-
|
|
3904
|
-
const total = ref(0)
|
|
3905
|
-
const options = ref<any[]>([])
|
|
3906
|
-
const mockData: any[] = []
|
|
3907
|
-
for (let i = 0; i < 1000; i++) {
|
|
3908
|
-
mockData.push({
|
|
3909
|
-
PRDocType: '测试数据' + (i + 1),
|
|
3910
|
-
DocNo: i + 1,
|
|
3911
|
-
ApprovedQtyPU: 'ApprovedQtyPU' + (i + 1),
|
|
3912
|
-
ACCode: 'ACCode'
|
|
3913
|
-
})
|
|
3914
|
-
}
|
|
3915
|
-
const getDataList = (page: Page = new Page(), str: string = '') => {
|
|
3916
|
-
setTimeout(() => {
|
|
3917
|
-
options.value = mockData.filter(item => item.PRDocType.includes(str)).slice(0, page.pageSize)
|
|
3918
|
-
total.value = mockData.length
|
|
3919
|
-
})
|
|
3920
|
-
}
|
|
3921
|
-
|
|
3922
|
-
setTimeout(() => {
|
|
3923
|
-
options.value = [{
|
|
3924
|
-
PRDocType: 'xxxPRDocType1',
|
|
3925
|
-
DocNo: 1,
|
|
3926
|
-
ApprovedQtyPU: 'xxxApprovedQtyPU1',
|
|
3927
|
-
ACCode: 'xxxACCode1'
|
|
3928
|
-
}, {
|
|
3929
|
-
PRDocType: 'xxxPRDocType2',
|
|
3930
|
-
DocNo: 2,
|
|
3931
|
-
ApprovedQtyPU: 'xxxApprovedQtyPU2',
|
|
3932
|
-
ACCode: 'xxxACCode2'
|
|
3933
|
-
}]
|
|
3934
|
-
code.value = [1, 2]
|
|
3935
|
-
code2.value = ''
|
|
3936
|
-
code2Name.value = ['xxxApprovedQtyPU2', 'xxxApprovedQtyPU3', 'xxxApprovedQtyPU4']
|
|
3937
|
-
code3.value = 1
|
|
3938
|
-
|
|
3939
|
-
// setTimeout(() => {
|
|
3940
|
-
// options.value = []
|
|
3941
|
-
// }, 2500)
|
|
3942
|
-
}, 1000)
|
|
3943
|
-
|
|
3944
|
-
const selected = (value: string | number | Array<number | string>) => {
|
|
3945
|
-
console.log(value)
|
|
3946
|
-
// code.value = value
|
|
3947
|
-
// console.log('selected',value)
|
|
3948
|
-
// // console.log('selected', row)
|
|
3949
|
-
}
|
|
3950
|
-
|
|
3951
|
-
const toPage = (page: Page, str: any) => {
|
|
3952
|
-
getDataList(page, str)
|
|
3953
|
-
}
|
|
3954
|
-
const selectMultiple = (value: string | number | Array<number | string>) => {
|
|
3955
|
-
code.value = value
|
|
3956
|
-
}
|
|
3957
|
-
|
|
3958
|
-
const remoteMethod = async (query: string, page: Page = new Page()) => {
|
|
3959
|
-
await getData(query, page)
|
|
3960
|
-
}
|
|
3961
|
-
|
|
3962
|
-
const selectChange = (value: string | number | Array<number | string>) => {
|
|
3963
|
-
console.log(value)
|
|
3964
|
-
}
|
|
3965
|
-
const getData = async (query: string, page: any) => {
|
|
3966
|
-
return new Promise<void>((resolve) => {
|
|
3967
|
-
setTimeout(() => {
|
|
3968
|
-
const start = (page.currentPage - 1) * page.pageSize
|
|
3969
|
-
options.value = mockData.filter(item => item.PRDocType.includes(query)).slice(start, start + page.pageSize)
|
|
3970
|
-
total.value = mockData.length
|
|
3971
|
-
resolve()
|
|
3972
|
-
}, 500)
|
|
3973
|
-
})
|
|
3974
|
-
}
|
|
3975
|
-
|
|
3976
|
-
onMounted(() => {
|
|
3977
|
-
getDataList()
|
|
3978
|
-
})
|
|
3979
|
-
// const filterMethod = (searchValue: string, page: Page) => {
|
|
3980
|
-
// // 手动过滤的得 保留一份原始数据
|
|
3981
|
-
// const arr = JSON.parse(JSON.stringify(options.value))
|
|
3982
|
-
// options.value = arr.filter((item: any) => item.ApprovedQtyPU.toString().includes(searchValue))
|
|
3983
|
-
// }
|
|
3615
|
+
// import DemoTest1 from 'packages/MSelectTable/docs/DemoTest1.vue'
|
|
3616
|
+
// import DemoTest2 from 'packages/MSelectTable/docs/DemoTest2.vue'
|
|
3617
|
+
// import DemoTest3 from 'packages/MSelectTable/docs/DemoTest3.vue'
|
|
3618
|
+
// import DemoTest4 from 'packages/MSelectTable/docs/DemoTest4.vue'
|
|
3984
3619
|
</script>
|
|
3985
3620
|
|
|
3986
3621
|
<style>
|
|
3987
|
-
.u-select {
|
|
3988
|
-
width: 240px;
|
|
3989
|
-
}
|
|
3990
3622
|
</style>
|
|
3991
3623
|
|
|
3992
3624
|
|
package/attributes.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"m-dialog/modelValue":{"type":"boolean","description":""},"m-dialog/width":{"type":"string | number","description":"对话框的宽度,默认值为 50%"},"m-dialog/insideHeight":{"type":"number | null","description":"对话框内部空间的高度,默认为null"},"m-dialog/minInsideHeight":{"type":"number","description":"对话框内部空间的最小高度,默认为0(当同时存在maxHeight和minInsideHeight时,以maxHeight为准)"},"m-dialog/maxInsideHeight":{"type":"number","description":"对话框内部空间的最大高度,默认为Infinity"},"m-dialog/resize":{"type":"boolean","description":"是否开启拖拽改变大小"},"m-dialog/draggable":{"type":"boolean","description":"是否可拖动"},"m-dialog/insideClassName":{"type":"string","description":"对话框内部空间的className"},"m-dialog/drawerMode":{"type":"boolean","description":"抽屉模式"},"m-dialog/resized":{"type":"[contentsSize: { width: number, height: number }]","description":"窗口大小改变完成事件"},"m-dialog/update:insideHeight":{"type":"[number]","description":"更新内部容器高度"},"m-dialog/update:modelValue":{"type":"[boolean]","description":""},"m-inline/minWidth":{"type":"number","description":"列最小宽度"},"m-inline/maxWidth":{"type":"number","description":"列最大宽度"},"m-inline/size":{"type":"Size","description":"组件尺寸"},"m-inline/configKey":{"type":"string","description":"配置key"},"m-inline/model":{"type":"Record<string, any> | null","description":"筛选对象"},"m-inline/switch":{"type":"[status: boolean]","description":"切换折叠展开事件"},"m-input-number/modelValue":{"type":"string | number","description":""},"m-input-number/placeholder":{"type":"string","description":""},"m-input-number/disabled":{"type":"boolean","description":"是否禁用数值输入框"},"m-input-number/size":{"type":"string","description":"数值输入框尺寸"},"m-input-number/min":{"type":"number","description":"设置数值输入框允许的最小值"},"m-input-number/max":{"type":"number","description":"设置数值输入框允许的最大值"},"m-input-number/step":{"type":"number","description":"数值输入框步长"},"m-input-number/stepStrictly":{"type":"boolean","description":"是否只能输入 step 的倍数"},"m-input-number/thousandthPlace":{"type":"boolean","description":"输入框是否显示千分位"},"m-input-number/noBorder":{"type":"boolean","description":"是否不要边框"},"m-input-number/noSpacing":{"type":"boolean","description":"不要边距"},"m-input-number/update:modelValue":{"type":"any","description":""},"m-input-number/change":{"type":"any","description":""},"m-input-number/focus":{"type":"any","description":""},"m-input-number/blur":{"type":"any","description":""},"m-select/checkboxMode":{"type":"boolean","description":"是否为checkbox模式"},"m-select/multiple":{"type":"boolean","description":"多选"},"m-select/modelValue":{"type":"any","description":"选中项绑定值"},"m-select/update:modelValue":{"type":"[value: number | string | Array<number | string>]","description":""},"m-select/change":{"type":"[value: any]","description":""},"m-select-table/modelValue":{"type":"string | number | Array<number | string>","description":""},"m-select-table/name":{"type":"string | number | Array<number | string>","description":"显示值"},"m-select-table/placeholder":{"type":"string","description":""},"m-select-table/disabled":{"type":"boolean","description":""},"m-select-table/size":{"type":"'small' | 'large' | ''","description":""},"m-select-table/total":{"type":"number | null","description":"总数据量,当有值时,出现分页器"},"m-select-table/filterMethod":{"type":"Function | null","description":"自定义搜索"},"m-select-table/filterable":{"type":"boolean","description":"是否使用搜索"},"m-select-table/remote":{"type":"boolean","description":"是否使用 远程搜索"},"m-select-table/remoteMethod":{"type":"Function","description":"自定义远程搜索"},"m-select-table/options":{"type":"Option[]","description":""},"m-select-table/tableTitle":{"type":"TableTitle[]","description":""},"m-select-table/multiple":{"type":"boolean","description":"是否多选"},"m-select-table/keywords":{"type":"Option","description":"定义默认的 label 和value"},"m-select-table/reserveSelection":{"type":"boolean","description":"是否开启翻页多选"},"m-select-table/tableHeight":{"type":"string | number","description":""},"m-select-table/isAffirmBtn":{"type":"boolean","description":"是否有确认按钮"},"m-select-table/scrollbarAlwaysOn":{"type":"boolean","description":"是否常态显示滚动条"},"m-select-table/allowCreate":{"type":"boolean","description":"是否能够创建条目"},"m-select-table/border":{"type":"boolean","description":"表格边框"},"m-select-table/popupWidth":{"type":"number | string","description":"弹窗的宽度"},"m-select-table/selected":{"type":"[values: string | number | Array<string | number>, rows: Option[] | Option]","description":"单选或多选之后的回调"},"m-select-table/selectMultiple":{"type":"[values: Array<string | number>, rows: Option[]]","description":"多选确认按钮时的回调 配合isAffirmBtn使用"},"m-select-table/toPage":{"type":"[page: Page, query?: string]","description":"当没有使用filterMethod时候才会有回调否则没有"},"m-select-table/selectChange":{"type":"[values: string | number | Array<string | number>]","description":"勾选数据change事件"},"m-select-table/update:modelValue":{"type":"[value: string | number | Array<string | number>]","description":""},"m-select-table/clear":{"type":"[]","description":"用户点击清空按钮时触发"},"m-select-table/removeTag":{"type":"[tag: any]","description":"多选模式下移除tag时触发"},"m-select-table-v1/modelValue":{"type":"string | number","description":""},"m-select-table-v1/placeholder":{"type":"string","description":""},"m-select-table-v1/disabled":{"type":"boolean","description":""},"m-select-table-v1/options":{"type":"Option[]","description":""},"m-select-table-v1/tableTitle":{"type":"any[]","description":""},"m-select-table-v1/remoteMethod":{"type":"Function","description":""},"m-select-table-v1/allowCreate":{"type":"boolean","description":""},"m-select-table-v1/focusShow":{"type":"boolean","description":""},"m-select-table-v1/isSelect":{"type":"boolean","description":""},"m-select-table-v1/clearable":{"type":"boolean","description":""},"m-select-table-v1/size":{"type":"'small' | 'large' | ''","description":""},"m-select-table-v1/labelKey":{"type":"string","description":""},"m-select-table-v1/scrollbarAlwaysOn":{"type":"boolean","description":""},"m-select-table-v1/total":{"type":"number | null","description":""},"m-select-table-v1/update:modelValue":{"type":"any","description":""},"m-select-table-v1/selectMultiple":{"type":"any","description":""},"m-select-table-v1/change":{"type":"any","description":""},"m-select-table-v1/selected":{"type":"any","description":""},"m-select-table-v1/clear":{"type":"any","description":""},"m-select-v2/modelValue":{"type":"ValueType","description":""},"m-select-v2/checkboxMode":{"type":"boolean","description":"是否为checkbox模式"},"m-select-v2/multiple":{"type":"boolean","description":"多选"},"m-select-v2/showAll":{"type":"boolean","description":"是否显示全选"},"m-select-v2/options":{"type":"Option[]","description":"选项"},"m-select-v2/update:modelValue":{"type":"[data: ValueType]","description":""},"m-batch-edit/selectionCell":{"type":"string","description":"选中列"},"m-batch-edit/size":{"type":"'small' | 'large' | ''","description":"组件大小"},"m-batch-edit/tableData":{"type":"Record<string, any>[]","description":"表格数据"},"m-batch-edit/tableTitle":{"type":"TableTitle[] | null","description":"表格列配置"},"m-batch-edit/relevancyTable":{"type":"InstanceType<typeof import('./../../MTable').MTable> | null","description":"关联表格(与tableTitle属性互斥,同时存在时只有tableTitle生效)"},"m-batch-edit/update:tableData":{"type":"[data: Record<string, any>[]]","description":""},"m-table/size":{"type":"'small' | 'large' | ''","description":""},"m-table/sole":{"type":"string","description":""},"m-table/data":{"type":"Record<string, any>[]","description":""},"m-table/filtersValue":{"type":"FilterValue | null","description":"表格内容筛选(当为null时,不显示筛选图标)"},"m-table/tableConfig":{"type":"TableConfig | null","description":"表格配置"},"m-table/expandProp":{"type":"string","description":"展开图标列(如使用这个属性则必须存在rowKey属性) (标记,约束条件后面解决)"},"m-table/expandRowKeys":{"type":"any[]","description":"可以通过该属性设置 Table 目前的展开行,需要设置 row-key 属性才能使用,该属性为展开行的 keys 数组。"},"m-table/rowKey":{"type":"Function | string","description":"行数据的 Key,用来优化 Table 的渲染; 在使用reserve-selection功能与显示树形数据时,该属性是必填的。 类型为 String 时,支持多层访问:user.info.id,但不支持 user.info[0].id,此种情况请使用 Function。"},"m-table/tableConfigKey":{"type":"string","description":"表格配置key"},"m-table/showSelectionCellStatus":{"type":"boolean","description":"显示单元格选中状态"},"m-table/selectionCell":{"type":"string","description":"选中列(必须showSelection为true)"},"m-table/pasteData":{"type":"[\n data: {\n /** 粘贴行的行数据 */\n editRow: { [key: string]: any },\n /** 粘贴列的列名 */\n editColumn: string,\n /** 粘贴的数据 */\n arr: Array<string | number>,\n /** 起始行 */\n rowIndex: number,\n },\n /** 粘贴完成后的表格数据 */\n tableData: Array<{ [key: string]: any }>\n ]","description":""},"m-table/update:tableConfig":{"type":"[tableConfig: TableConfig]","description":"表格配置更新"},"m-table/privateExpandChange":{"type":"[row: any, expandedRows: any[]]","description":"expandProp模式下 当用户对某一行展开或者关闭的时候会触发该事件"},"m-table/update:selectionCell":{"type":"[string]","description":"选中单元格更新"},"m-table-column/filtersValue":{"type":"FilterValue | null","description":"列筛选过滤条件(当为null时,不显示筛选图标)"},"m-table-column/filters":{"type":"Array<{ text: string | number, value: string | number }>","description":"过滤选项"},"m-table-column/filterMethod":{"type":"Function | null","description":"过滤方法"},"m-table-column/children":{"type":"Array<PropChildren>","description":""},"m-table-column/update:filtersValue":{"type":"any","description":""},"m-table-column-set/modelValue":{"type":"TableConfig","description":"配置"},"m-table-column-set/foldMode":{"type":"boolean","description":"是否为折叠模式"},"m-table-column-set/link":{"type":"boolean","description":"是否为链接按钮"},"m-table-column-set/tableConfigKey":{"type":"string","description":"表格配置key"},"m-table-column-set/update:modelValue":{"type":"any","description":""},"m-table-column-set/change":{"type":"any","description":""},"m-table-v2/size":{"type":"'small' | 'large' | 'default'","description":""},"m-table-v2/data":{"type":"Array<{\n [key: string]: any\n }>","description":""},"m-table-v2/height":{"type":"number","description":"表格高度"},"m-table-v2/border":{"type":"boolean","description":"显示边框"},"m-table-v2/columns":{"type":"TableV2Title[]","description":"表格列配置"},"m-table-v2/filtersValue":{"type":"FilterValue | null","description":"表格内容筛选(当为null时,不显示筛选图标)"},"m-table-v2/tableConfig":{"type":"TableConfig | null","description":"表格配置"},"m-table-v2/tableConfigKey":{"type":"string","description":"表格配置key"},"m-table-v2/fixed":{"type":"boolean","description":"单元格宽度是自适应还是固定"},"m-table-v2/estimatedRowHeight":{"type":"number | null","description":"渲染动态的单元格的预估高度"},"m-table-v2/headerHeight":{"type":"number | number[] | null","description":"Header 的高度由height设置。 如果传入数组,它会使 header row 等于数组长度"},"m-table-v2/cellWidthAdaptive":{"type":"boolean","description":"单元格宽度自适应"},"m-table-v2/pasteData":{"type":"[\n data: {\n /** 粘贴行的行数据 */\n editRow: { [key: string]: any },\n /** 粘贴列的列名 */\n editColumn: string,\n /** 粘贴的数据 */\n arr: Array<string | number>,\n /** 起始行 */\n rowIndex: number,\n },\n /** 粘贴完成后的表格数据 */\n tableData: Array<{ [key: string]: any }>\n ]","description":""},"m-table-v2/update:tableConfig":{"type":"[tableConfig: TableConfig]","description":"表格配置更新"},"skin-config/change":{"type":"any","description":""},"tab-page/modelValue":{"type":"MenuItem[]","description":""},"tab-page/activeKey":{"type":"string","description":""},"tab-page/showRightClickMenu":{"type":"boolean","description":""},"tab-page/primaryColor":{"type":"string","description":""},"tab-page/primaryBackgroundColor":{"type":"string | null","description":""},"tab-page/close":{"type":"any","description":""},"tab-page/click":{"type":"any","description":""}}
|
|
1
|
+
{"m-dialog/modelValue":{"type":"boolean","description":""},"m-dialog/width":{"type":"string | number","description":"对话框的宽度,默认值为 50%"},"m-dialog/insideHeight":{"type":"number | null","description":"对话框内部空间的高度,默认为null"},"m-dialog/minInsideHeight":{"type":"number","description":"对话框内部空间的最小高度,默认为0(当同时存在maxHeight和minInsideHeight时,以maxHeight为准)"},"m-dialog/maxInsideHeight":{"type":"number","description":"对话框内部空间的最大高度,默认为Infinity"},"m-dialog/resize":{"type":"boolean","description":"是否开启拖拽改变大小"},"m-dialog/draggable":{"type":"boolean","description":"是否可拖动"},"m-dialog/insideClassName":{"type":"string","description":"对话框内部空间的className"},"m-dialog/drawerMode":{"type":"boolean","description":"抽屉模式"},"m-dialog/resized":{"type":"[contentsSize: { width: number, height: number }]","description":"窗口大小改变完成事件"},"m-dialog/update:insideHeight":{"type":"[number]","description":"更新内部容器高度"},"m-dialog/update:modelValue":{"type":"[boolean]","description":""},"m-inline/minWidth":{"type":"number","description":"列最小宽度"},"m-inline/maxWidth":{"type":"number","description":"列最大宽度"},"m-inline/size":{"type":"Size","description":"组件尺寸"},"m-inline/configKey":{"type":"string","description":"配置key"},"m-inline/model":{"type":"Record<string, any> | null","description":"筛选对象"},"m-inline/switch":{"type":"[status: boolean]","description":"切换折叠展开事件"},"m-input-number/modelValue":{"type":"string | number","description":""},"m-input-number/placeholder":{"type":"string","description":""},"m-input-number/disabled":{"type":"boolean","description":"是否禁用数值输入框"},"m-input-number/size":{"type":"string","description":"数值输入框尺寸"},"m-input-number/min":{"type":"number","description":"设置数值输入框允许的最小值"},"m-input-number/max":{"type":"number","description":"设置数值输入框允许的最大值"},"m-input-number/step":{"type":"number","description":"数值输入框步长"},"m-input-number/stepStrictly":{"type":"boolean","description":"是否只能输入 step 的倍数"},"m-input-number/thousandthPlace":{"type":"boolean","description":"输入框是否显示千分位"},"m-input-number/noBorder":{"type":"boolean","description":"是否不要边框"},"m-input-number/noSpacing":{"type":"boolean","description":"不要边距"},"m-input-number/update:modelValue":{"type":"any","description":""},"m-input-number/change":{"type":"any","description":""},"m-input-number/focus":{"type":"any","description":""},"m-input-number/blur":{"type":"any","description":""},"m-select/checkboxMode":{"type":"boolean","description":"是否为checkbox模式"},"m-select/multiple":{"type":"boolean","description":"多选"},"m-select/modelValue":{"type":"any","description":"选中项绑定值"},"m-select/update:modelValue":{"type":"[value: number | string | Array<number | string>]","description":""},"m-select/change":{"type":"[value: any]","description":""},"m-select-table/modelValue":{"type":"string | number | Array<number | string>","description":""},"m-select-table/name":{"type":"string | number | Array<number | string>","description":"显示值"},"m-select-table/placeholder":{"type":"string","description":""},"m-select-table/disabled":{"type":"boolean","description":""},"m-select-table/size":{"type":"'small' | 'large' | ''","description":""},"m-select-table/total":{"type":"number | null","description":"总数据量,当有值时,出现分页器"},"m-select-table/filterMethod":{"type":"Function | null","description":"自定义搜索"},"m-select-table/filterable":{"type":"boolean","description":"是否使用搜索"},"m-select-table/remote":{"type":"boolean","description":"是否使用 远程搜索"},"m-select-table/remoteMethod":{"type":"Function","description":"自定义远程搜索"},"m-select-table/options":{"type":"Option[]","description":""},"m-select-table/tableTitle":{"type":"TableTitle[]","description":""},"m-select-table/multiple":{"type":"boolean","description":"是否多选"},"m-select-table/keywords":{"type":"Option","description":"定义默认的 label 和value"},"m-select-table/reserveSelection":{"type":"boolean","description":"是否开启翻页多选"},"m-select-table/tableHeight":{"type":"string | number","description":""},"m-select-table/isAffirmBtn":{"type":"boolean","description":"是否有确认按钮"},"m-select-table/scrollbarAlwaysOn":{"type":"boolean","description":"是否常态显示滚动条"},"m-select-table/allowCreate":{"type":"boolean","description":"是否能够创建条目"},"m-select-table/border":{"type":"boolean","description":"表格边框"},"m-select-table/popupWidth":{"type":"number | string","description":"弹窗的宽度"},"m-select-table/selected":{"type":"[values: string | number | Array<string | number>, rows: Option[] | Option]","description":"单选或多选之后的回调"},"m-select-table/selectMultiple":{"type":"[values: Array<string | number>, rows: Option[]]","description":"多选确认按钮时的回调 配合isAffirmBtn使用"},"m-select-table/toPage":{"type":"[page: Page, query?: string | number | Array<string | number>]","description":"当没有使用filterMethod时候才会有回调否则没有"},"m-select-table/selectChange":{"type":"[values: string | number | Array<string | number>]","description":"勾选数据change事件,选中值不发生变化"},"m-select-table/update:modelValue":{"type":"[value: string | number | Array<string | number>]","description":""},"m-select-table/clear":{"type":"[]","description":"用户点击清空按钮时触发"},"m-select-table/removeTag":{"type":"[tag: any]","description":"多选模式下移除tag时触发(标记,待处理)"},"m-select-table-v1/modelValue":{"type":"string | number","description":""},"m-select-table-v1/placeholder":{"type":"string","description":""},"m-select-table-v1/disabled":{"type":"boolean","description":""},"m-select-table-v1/options":{"type":"Option[]","description":""},"m-select-table-v1/tableTitle":{"type":"any[]","description":""},"m-select-table-v1/remoteMethod":{"type":"Function","description":""},"m-select-table-v1/allowCreate":{"type":"boolean","description":""},"m-select-table-v1/focusShow":{"type":"boolean","description":""},"m-select-table-v1/isSelect":{"type":"boolean","description":""},"m-select-table-v1/clearable":{"type":"boolean","description":""},"m-select-table-v1/size":{"type":"'small' | 'large' | ''","description":""},"m-select-table-v1/labelKey":{"type":"string","description":""},"m-select-table-v1/scrollbarAlwaysOn":{"type":"boolean","description":""},"m-select-table-v1/total":{"type":"number | null","description":""},"m-select-table-v1/update:modelValue":{"type":"any","description":""},"m-select-table-v1/selectMultiple":{"type":"any","description":""},"m-select-table-v1/change":{"type":"any","description":""},"m-select-table-v1/selected":{"type":"any","description":""},"m-select-table-v1/clear":{"type":"any","description":""},"m-select-v2/modelValue":{"type":"ValueType","description":""},"m-select-v2/checkboxMode":{"type":"boolean","description":"是否为checkbox模式"},"m-select-v2/multiple":{"type":"boolean","description":"多选"},"m-select-v2/showAll":{"type":"boolean","description":"是否显示全选"},"m-select-v2/options":{"type":"Option[]","description":"选项"},"m-select-v2/update:modelValue":{"type":"[data: ValueType]","description":""},"m-batch-edit/selectionCell":{"type":"string","description":"选中列"},"m-batch-edit/size":{"type":"'small' | 'large' | ''","description":"组件大小"},"m-batch-edit/tableData":{"type":"Record<string, any>[]","description":"表格数据"},"m-batch-edit/tableTitle":{"type":"TableTitle[] | null","description":"表格列配置"},"m-batch-edit/relevancyTable":{"type":"InstanceType<typeof import('./../../MTable').MTable> | null","description":"关联表格(与tableTitle属性互斥,同时存在时只有tableTitle生效)"},"m-batch-edit/update:tableData":{"type":"[data: Record<string, any>[]]","description":""},"m-table/size":{"type":"'small' | 'large' | ''","description":""},"m-table/sole":{"type":"string","description":""},"m-table/data":{"type":"Record<string, any>[]","description":""},"m-table/filtersValue":{"type":"FilterValue | null","description":"表格内容筛选(当为null时,不显示筛选图标)"},"m-table/tableConfig":{"type":"TableConfig | null","description":"表格配置"},"m-table/expandProp":{"type":"string","description":"展开图标列(如使用这个属性则必须存在rowKey属性) (标记,约束条件后面解决)"},"m-table/expandRowKeys":{"type":"any[]","description":"可以通过该属性设置 Table 目前的展开行,需要设置 row-key 属性才能使用,该属性为展开行的 keys 数组。"},"m-table/rowKey":{"type":"Function | string","description":"行数据的 Key,用来优化 Table 的渲染; 在使用reserve-selection功能与显示树形数据时,该属性是必填的。 类型为 String 时,支持多层访问:user.info.id,但不支持 user.info[0].id,此种情况请使用 Function。"},"m-table/tableConfigKey":{"type":"string","description":"表格配置key"},"m-table/showSelectionCellStatus":{"type":"boolean","description":"显示单元格选中状态"},"m-table/selectionCell":{"type":"string","description":"选中列(必须showSelection为true)"},"m-table/pasteData":{"type":"[\n data: {\n /** 粘贴行的行数据 */\n editRow: { [key: string]: any },\n /** 粘贴列的列名 */\n editColumn: string,\n /** 粘贴的数据 */\n arr: Array<string | number>,\n /** 起始行 */\n rowIndex: number,\n },\n /** 粘贴完成后的表格数据 */\n tableData: Array<{ [key: string]: any }>\n ]","description":""},"m-table/update:tableConfig":{"type":"[tableConfig: TableConfig]","description":"表格配置更新"},"m-table/privateExpandChange":{"type":"[row: any, expandedRows: any[]]","description":"expandProp模式下 当用户对某一行展开或者关闭的时候会触发该事件"},"m-table/update:selectionCell":{"type":"[string]","description":"选中单元格更新"},"m-table-column/filtersValue":{"type":"FilterValue | null","description":"列筛选过滤条件(当为null时,不显示筛选图标)"},"m-table-column/filters":{"type":"Array<{ text: string | number, value: string | number }>","description":"过滤选项"},"m-table-column/filterMethod":{"type":"Function | null","description":"过滤方法"},"m-table-column/children":{"type":"Array<PropChildren>","description":""},"m-table-column/update:filtersValue":{"type":"any","description":""},"m-table-column-set/modelValue":{"type":"TableConfig","description":"配置"},"m-table-column-set/foldMode":{"type":"boolean","description":"是否为折叠模式"},"m-table-column-set/link":{"type":"boolean","description":"是否为链接按钮"},"m-table-column-set/tableConfigKey":{"type":"string","description":"表格配置key"},"m-table-column-set/update:modelValue":{"type":"any","description":""},"m-table-column-set/change":{"type":"any","description":""},"m-table-v2/size":{"type":"'small' | 'large' | 'default'","description":""},"m-table-v2/data":{"type":"Array<{\n [key: string]: any\n }>","description":""},"m-table-v2/height":{"type":"number","description":"表格高度"},"m-table-v2/border":{"type":"boolean","description":"显示边框"},"m-table-v2/columns":{"type":"TableV2Title[]","description":"表格列配置"},"m-table-v2/filtersValue":{"type":"FilterValue | null","description":"表格内容筛选(当为null时,不显示筛选图标)"},"m-table-v2/tableConfig":{"type":"TableConfig | null","description":"表格配置"},"m-table-v2/tableConfigKey":{"type":"string","description":"表格配置key"},"m-table-v2/fixed":{"type":"boolean","description":"单元格宽度是自适应还是固定"},"m-table-v2/estimatedRowHeight":{"type":"number | null","description":"渲染动态的单元格的预估高度"},"m-table-v2/headerHeight":{"type":"number | number[] | null","description":"Header 的高度由height设置。 如果传入数组,它会使 header row 等于数组长度"},"m-table-v2/cellWidthAdaptive":{"type":"boolean","description":"单元格宽度自适应"},"m-table-v2/expandColumnKey":{"type":"string","description":"展开列的key"},"m-table-v2/pasteData":{"type":"[\n data: {\n /** 粘贴行的行数据 */\n editRow: { [key: string]: any },\n /** 粘贴列的列名 */\n editColumn: string,\n /** 粘贴的数据 */\n arr: Array<string | number>,\n /** 起始行 */\n rowIndex: number,\n },\n /** 粘贴完成后的表格数据 */\n tableData: Array<{ [key: string]: any }>\n ]","description":""},"m-table-v2/update:tableConfig":{"type":"[tableConfig: TableConfig]","description":"表格配置更新"},"skin-config/change":{"type":"any","description":""},"tab-page/modelValue":{"type":"MenuItem[]","description":""},"tab-page/activeKey":{"type":"string","description":""},"tab-page/showRightClickMenu":{"type":"boolean","description":""},"tab-page/primaryColor":{"type":"string","description":""},"tab-page/primaryBackgroundColor":{"type":"string | null","description":""},"tab-page/close":{"type":"any","description":""},"tab-page/click":{"type":"any","description":""}}
|