export function tooltip(text){
return text.length > 10; //鼠标放上去提示超过10个就显示
};
.tooltip{
width: 260px;
}
.w180{
min-width: 180px;
@extend .tooltip;
}
export function tooltip(text){
return text.length > 10; //鼠标放上去提示超过10个就显示
};
.tooltip{
width: 260px;
}
.w180{
min-width: 180px;
@extend .tooltip;
}