Skip to content

Commit

Permalink
fix: 选择器支持fieldmixin
Browse files Browse the repository at this point in the history
  • Loading branch information
YufJi committed Jul 27, 2023
1 parent 29977da commit 185ff37
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/pickerson/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,14 @@ import Popup from '../popup';
import Field from '../field';
import Search from '../search';

import { FieldMixin } from '../mixins/field';
import DataSourceMixin from '../mixins/DataSource';


const [createComponent, bem, t] = createNamespace('pickerson');

export default createComponent({
mixins: [DataSourceMixin],
mixins: [FieldMixin, DataSourceMixin],
props: {
columnsprop: [Array, String],
pvalue: [String, Object],
Expand Down

0 comments on commit 185ff37

Please sign in to comment.