CellFormPreview 组件使用教程
优质
小牛编辑
132浏览
2023-12-01
安装
import { CellFormPreview } from 'vux'
export default {
components: {
CellFormPreview
}
}
// 在入口文件全局引入
import Vue from 'vue'
import { CellFormPreview } from 'vux'
Vue.component('cell-form-preview', CellFormPreview)
CellFormPreview
需要在 Group
组件中使用。
<group>
<cell title="Total" value="¥1024"></cell>
<cell-form-preview :list="list"></cell-form-preview>
</group>
import { CellFormPreview, Group, Cell } from 'vux'
export default {
components: {
CellFormPreview,
Group,
Cell
},
data () {
return {
list: [{
label: 'Apple',
value: '3.29'
}, {
label: 'Banana',
value: '1.04'
}, {
label: 'Fish',
value: '8.00'
}]
}
}
}
属性
名字 | 类型 | 默认值 | 说明 | 版本要求 |
list | array | 内容列表,键值包括label 和value ,可缺值 | v2.2.0 | |
border-intent | boolean | true | 是否显示边框与左边的间隙 | v2.2.1-rc.1 |