1234567891011121314151617181920212223242526272829303132333435363738 |
- <template>
- <uni-shadow-root class="weapp-lib-radio-group-index"><view :class="utils.bem('radio-group', [direction])">
- <slot></slot>
- </view></uni-shadow-root>
- </template>
- <wxs src="../wxs/utils.wxs" module="utils"></wxs>
- <script>
- global['__wxRoute'] = 'weapp/lib/radio-group/index'
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- var component_1 = require("../common/component");
- var relation_1 = require("../common/relation");
- (0, component_1.VantComponent)({
- field: true,
- relation: (0, relation_1.useChildren)('radio'),
- props: {
- value: {
- type: null,
- observer: 'updateChildren',
- },
- direction: String,
- disabled: {
- type: Boolean,
- observer: 'updateChildren',
- },
- },
- methods: {
- updateChildren: function () {
- this.children.forEach(function (child) { return child.updateFromParent(); });
- },
- },
- });
- export default global['__wxComponents']['weapp/lib/radio-group/index']
- </script>
- <style platform="mp-weixin">
- @import '../common/index.css';.van-radio-group--horizontal{display:flex;flex-wrap:wrap}
- </style>
|