zoukankan      html  css  js  c++  java
  • el-select 封装

    这里打算封装一个全局el-select组件

    MySelect.vue

    <template>
      <el-select
        v-if="options.length!==0"
        :value="value"
        @input="$emit('input',$event)"
        :placeholder="placeholder"
        clearable
      >
        <el-option
          v-for="item in options"
          :key="item[optionVal]"
          :label="item[label]"
          :value="item[optionVal]"
        ></el-option>
      </el-select>
    </template>
    <script>
    export default {
      name: "MySelect",
      props: {
        options: {
          type: Array,
          required: true
        },
        // 绑定value是为了外面也可以传值改变到里面的值双向绑定
        value: {
          type: [String, Number,]
        },
        placeholder: {
          type: String,
          default: "请选择~~"
        },
        //optionVal options里面每项对象的值
        optionVal: {
          type: [Number, String],
          default: "optionVal"
        },
        //lable options里面每项对象的标签
        label: {
          type: String,
          default: "lable"
        }
      },
      data() {
        return {};
      },
      methods: {}
    };
    </script>
    <style lang="scss" scoped>
    </style>

    index.js

    import MySelect from "./MySelect";
    const compName = MySelect.name; //获取组件的名字 当做全局组件名字使用
    
    const mySelect = {
      install(Vue) {
        Vue.component(compName, MySelect);
      }
    };
    export default mySelect;

    main.js

    import MySelect from './components/globalComponents/myselect/index'
    Vue.use(MySelect)

    使用

     <my-select :options='options' option-val='value' label='label' v-model="defaultVal"></my-select>
     
  • 相关阅读:
    xcode 查看stastic
    erlang 游戏服务器开发
    同一世界服务器架构--Erlang游戏服务器
    理解Erlang/OTP
    使用SecureCRT连接AWS的EC2
    redis单主机多实例
    Redis命令总结
    [redis] redis配置文件redis.conf的详细说明
    [转至云风的博客]开发笔记 (2) :redis 数据库结构设计
    Redis 集群方案
  • 原文地址:https://www.cnblogs.com/xiaoliziaaa/p/13202279.html
Copyright © 2011-2022 走看看