首页 > 其他 > 详细

级联选择器

时间:2019-11-24 01:07:06      阅读:202      评论:0      收藏:0      [点我收藏+]
<template>
  
      <!-- 级联选择器 -->
              <el-cascader
                :props="defaultParams"
                :options="options"
                v-model="selectedOptions"
                :clearable="true"
                :style="{ width: ‘100%‘ }"
              ></el-cascader>
          
</template>

<script>
export default {
  data() {
    return {
      options: [],
      selectedOptions: [],
      defaultParams: {
        label: ‘cat_name‘,
        value: ‘cat_id‘,
        children: ‘children‘,
        checkStrictly: true
      }
    }
  },
  created() {
    this.addCate()
  },
  methods: {
    async addCate() {
      const { data: res } = await this.$http.get(‘categories‘, {
        params: {
          type: 3
        }
      })
      this.options = res.data
    }
  }
}
</script>

<style lang="less" scoped>

</style>

  

级联选择器

原文:https://www.cnblogs.com/wangdong9395/p/11920960.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!