Vue组件开发系列之InkWell组件
2018-10-30 本文已影响9人
vue爱好者
组件源码:
https://github.com/AntJavascript/widgetUI/tree/master/InkWell
组件结构:
<template>
<div class='wt-ink'>
<slot></slot>
</div>
</template>
代码分析:
css代码:
.wt-ink {
&:active {
background: rgba(0,0,0,0.1);
}
}