style: prettier code
parent
4e65ae0e0a
commit
9e97b5ce78
|
@ -24,6 +24,6 @@ components/style/color/*.less
|
||||||
.gitattributes
|
.gitattributes
|
||||||
.stylelintrc
|
.stylelintrc
|
||||||
.vcmrc
|
.vcmrc
|
||||||
.logo
|
logo.png
|
||||||
.npmrc.template
|
.npmrc.template
|
||||||
.huskyrc
|
.huskyrc
|
||||||
|
|
|
@ -9,7 +9,7 @@ Implement resizable column by integrate with [vue-draggable-resizable](https://g
|
||||||
</us>
|
</us>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<a-table bordered :columns="columns" :components="components" :dataSource="data">
|
<a-table bordered :columns="columns" :components="components" :data-source="data">
|
||||||
<template v-slot:action>
|
<template v-slot:action>
|
||||||
<a href="javascript:;">Delete</a>
|
<a href="javascript:;">Delete</a>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -19,8 +19,18 @@ export const TreeSelectProps = () => ({
|
||||||
loadData: PropTypes.func,
|
loadData: PropTypes.func,
|
||||||
maxTagCount: PropTypes.number,
|
maxTagCount: PropTypes.number,
|
||||||
maxTagPlaceholder: PropTypes.any,
|
maxTagPlaceholder: PropTypes.any,
|
||||||
value: PropTypes.oneOfType([PropTypes.string, PropTypes.object, PropTypes.array, PropTypes.number]),
|
value: PropTypes.oneOfType([
|
||||||
defaultValue: PropTypes.oneOfType([PropTypes.string, PropTypes.object, PropTypes.array, PropTypes.number]),
|
PropTypes.string,
|
||||||
|
PropTypes.object,
|
||||||
|
PropTypes.array,
|
||||||
|
PropTypes.number,
|
||||||
|
]),
|
||||||
|
defaultValue: PropTypes.oneOfType([
|
||||||
|
PropTypes.string,
|
||||||
|
PropTypes.object,
|
||||||
|
PropTypes.array,
|
||||||
|
PropTypes.number,
|
||||||
|
]),
|
||||||
multiple: PropTypes.bool,
|
multiple: PropTypes.bool,
|
||||||
notFoundContent: PropTypes.any,
|
notFoundContent: PropTypes.any,
|
||||||
// onSelect: (value: any) => void,
|
// onSelect: (value: any) => void,
|
||||||
|
|
Loading…
Reference in New Issue