69 lines
1.8 KiB
Vue
69 lines
1.8 KiB
Vue
|
<template>
|
||
|
<uni-shadow-root class="vant-dist-grid-index"><view :class="'van-grid custom-class '+(border && !gutter ? 'van-hairline--top' : '')" :style="computed.rootStyle({ gutter })">
|
||
|
<slot></slot>
|
||
|
</view></uni-shadow-root>
|
||
|
</template>
|
||
|
<wxs src="./index.wxs" module="computed"></wxs>
|
||
|
<script>
|
||
|
|
||
|
global['__wxRoute'] = 'vant/dist/grid/index'
|
||
|
import { VantComponent } from '../common/component';
|
||
|
import { useChildren } from '../common/relation';
|
||
|
VantComponent({
|
||
|
relation: useChildren('grid-item'),
|
||
|
props: {
|
||
|
square: {
|
||
|
type: Boolean,
|
||
|
observer: 'updateChildren',
|
||
|
},
|
||
|
gutter: {
|
||
|
type: null,
|
||
|
value: 0,
|
||
|
observer: 'updateChildren',
|
||
|
},
|
||
|
clickable: {
|
||
|
type: Boolean,
|
||
|
observer: 'updateChildren',
|
||
|
},
|
||
|
columnNum: {
|
||
|
type: Number,
|
||
|
value: 4,
|
||
|
observer: 'updateChildren',
|
||
|
},
|
||
|
center: {
|
||
|
type: Boolean,
|
||
|
value: true,
|
||
|
observer: 'updateChildren',
|
||
|
},
|
||
|
border: {
|
||
|
type: Boolean,
|
||
|
value: true,
|
||
|
observer: 'updateChildren',
|
||
|
},
|
||
|
direction: {
|
||
|
type: String,
|
||
|
observer: 'updateChildren',
|
||
|
},
|
||
|
iconSize: {
|
||
|
type: String,
|
||
|
observer: 'updateChildren',
|
||
|
},
|
||
|
reverse: {
|
||
|
type: Boolean,
|
||
|
value: false,
|
||
|
observer: 'updateChildren',
|
||
|
},
|
||
|
},
|
||
|
methods: {
|
||
|
updateChildren() {
|
||
|
this.children.forEach((child) => {
|
||
|
child.updateStyle();
|
||
|
});
|
||
|
},
|
||
|
},
|
||
|
});
|
||
|
export default global['__wxComponents']['vant/dist/grid/index']
|
||
|
</script>
|
||
|
<style platform="mp-weixin">
|
||
|
@import '../common/index.css';.van-grid{box-sizing:border-box;overflow:hidden;position:relative}
|
||
|
</style>
|