nemo-shen 98721b7b7e
feat(Cell): cell-group inset prop (#4341)
* feat(Cell): cell-group inset prop

* fix(Cell): remove inset prop default value
2021-07-19 12:24:56 +08:00

13 lines
190 B
TypeScript

import { VantComponent } from '../common/component';
VantComponent({
props: {
title: String,
border: {
type: Boolean,
value: true,
},
inset: Boolean,
},
});