美文网首页
Vue组件开发系列之InkWell组件

Vue组件开发系列之InkWell组件

作者: vue爱好者 | 来源:发表于2018-10-30 16:26 被阅读9次

    组件源码:
    https://github.com/AntJavascript/widgetUI/tree/master/InkWell

    20181030_162304.gif

    组件结构:

    <template>
        <div class='wt-ink'>
            <slot></slot>
        </div>
    </template>
    

    代码分析:

    css代码:

    .wt-ink {
        &:active {
            background: rgba(0,0,0,0.1);
        }
    }

    相关文章

      网友评论

          本文标题:Vue组件开发系列之InkWell组件

          本文链接:https://www.haomeiwen.com/subject/srwgtqtx.html