feat(Form): support using RadioGroup

This commit is contained in:
陈嘉涵 2020-02-11 09:05:10 +08:00
parent 15390241d8
commit 48e443d0e2
2 changed files with 3 additions and 2 deletions

View File

@ -14,7 +14,7 @@ export const FieldMixin = {
}, },
created() { created() {
if (this.vanField) { if (this.vanField && !this.vanField.children) {
this.vanField.children = this; this.vanField.children = this;
} }
}, },

View File

@ -1,10 +1,11 @@
import { createNamespace } from '../utils'; import { createNamespace } from '../utils';
import { FieldMixin } from '../mixins/field';
import { ParentMixin } from '../mixins/relation'; import { ParentMixin } from '../mixins/relation';
const [createComponent, bem] = createNamespace('radio-group'); const [createComponent, bem] = createNamespace('radio-group');
export default createComponent({ export default createComponent({
mixins: [ParentMixin('vanRadio')], mixins: [ParentMixin('vanRadio'), FieldMixin],
props: { props: {
value: null, value: null,