• 【Vue3】3-6 : 仿ElementPlus框架的el-button按钮组件实


    前言

    上节,我们学习了

    • slot插槽,组件内容的分发处理

    本节内容

    本小节利用前面学习的组件通信知识,来完成一个仿Element Plus框架的el-button按钮组件实现
    仿造的地址:uhttps://element-plus.org/zh-CN/component/button.html

    实现需求

    • 按钮类型
    • 按钮尺寸
    • 按钮文字
    • 添加图标

    完整代码如下:

    <style>
        .el-button{
          display: inline-flex;
          justify-content: center;
          align-items: center;
          line-height: 1;
          height: 32px;
          white-space: nowrap;
          cursor: pointer;
          background-color: #ffffff;
          border: 1px solid #dcdfe6;
          border-color: #dcdfe6;;
          color: #606266;
          -webkit-appearance: none;
          text-align: center;
          box-sizing: border-box;
          outline: none;
          transition: .1s;
          font-weight: 500;
          user-select: none;
          vertical-align: middle;
          padding: 8px 15px;
          font-size: 14px;
          border-radius: 4px;
        }
        .el-button--primary{
          color: white;
          background-color: #409eff; 
        }
        .el-button--success{
          color: white;
          background-color: #67c23a; 
        }
        .el-button--large{
          height: 40px;
          padding: 12px 19px;
          font-size: 14px;
        }
        .el-button--small{
          height: 24px;
          padding: 5px 11px;
          font-size: 12px;
          border-radius: 3px;
        }
    style>
    <link rel="stylesheet" href="./iconfont/iconfont.css">
    <script src="../vue.global.js">script>
    <div id="app">
        <el-button>defaultel-button>
        <el-button type="primary" size="small">Primaryel-button>
        <el-button type="success" size="large">Successel-button>
        <el-button type="success" size="large">
          <template #icon>
            <i class="iconfont iconfangdajing">i>
          template>
          Success
        el-button>
      div>
    <script>
        let ElButton = {
            data(){
                return {
                    buttonClass: {
                        'el-button': true,
                        [`el-button--${this.type}`]: this.type !== '', 
                        [`el-button--${this.size}`]: this.size !== '' 
                    }
                }
            },
            props: {
                type: {
                    type: String,
                    default: ''
                },
                size: {
                    type: String,
                    default: ''
                }
            },
            template: `
            `
        };
    
        let vm = Vue.createApp({
            data(){
                return {
                }
            },
            components: {
                ElButton
            }
        }).mount('#app');
    script>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96

    在这里插入图片描述

  • 相关阅读:
    openstack——4、开启虚拟机
    【Android】在App里面安装Apk文件
    Java String.valueOf()方法具有什么功能呢?
    React源码解读之任务调度
    如何应对软件项目中的变化
    zabbix6.0监控磁盘IO
    序列图怎么画,也就是顺序图
    React组件的生命周期
    牛顿法,高斯牛顿法,列文伯格-马夸尔特(LM)法
    Minio上传文件ssl证书不受信任
  • 原文地址:https://blog.csdn.net/ladymorgana/article/details/136460207