目录
当前位置: 首页 > 文档资料 > VUX 中文文档 >

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'
      }]
    }
  }
}

属性

名字类型默认值说明版本要求
listarray内容列表,键值包括labelvalue,可缺值v2.2.0
border-intentbooleantrue是否显示边框与左边的间隙v2.2.1-rc.1