12345678910111213141516171819202122232425262728293031323334353637383940 |
- <template>
- <uni-shadow-root class="weapp-lib-row-index"><view class="van-row custom-class" :style="computed.rootStyle({ gutter })">
- <slot></slot>
- </view></uni-shadow-root>
- </template>
- <wxs src="./index.wxs" module="computed"></wxs>
- <script>
- global['__wxRoute'] = 'weapp/lib/row/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)({
- relation: (0, relation_1.useChildren)('col', function (target) {
- var gutter = this.data.gutter;
- if (gutter) {
- target.setData({ gutter: gutter });
- }
- }),
- props: {
- gutter: {
- type: Number,
- observer: 'setGutter',
- },
- },
- methods: {
- setGutter: function () {
- var _this = this;
- this.children.forEach(function (col) {
- col.setData(_this.data);
- });
- },
- },
- });
- export default global['__wxComponents']['weapp/lib/row/index']
- </script>
- <style platform="mp-weixin">
- @import '../common/index.css';.van-row:after{clear:both;content:"";display:table}
- </style>
|