当前位置: 首页 > 文档资料 > Feui 中文文档 >

Indexlist 分类列表

优质
小牛编辑
132浏览
2023-12-01
import { Indexlist } from 'feui';
components: {
  [Indexlist.name]: Indexlist
}

代码演示

基础用法

link 如果有该属性,右侧将会出现指引点击的右箭头,当做路由跳转。

<fe-list v-model="oData"></fe-list>
export default {
  data() {
    return {
      oData: [{
        name: '#',
        list: [{
            text: '12547896'
        },{
            text: '451384'
        }]
      },{
        name: 'F',
        list: [{
            text: '海贼王',
            link:'/cell'
        },{
            text: '汇通',
        },{
            text:'hotmail'
        }]
      },{
        name: 'A',
        list: [{
            text: '爱奇艺',
        },{
            text: '阿里云',
        },{
            text: '阿里巴巴',
        },{
            text: '安居客',
        },]
      }]
    }
  }
}

API

参数说明类型默认值可选值
value列表显示值,使用v-model绑定Object--
isSort是否需要根据name排序Booleanfalsefalse,true
-----