Less
// 全局引用
@flex: {
display: flex;
align-items: center;
justify-content: space-between;
};
@margin: {
width: @width;
margin: 0 auto;
};
// 加快编程速度
.ClassName{
@flex();
}
即:
.ClassName{
display: flex;
align-items: center;
justify-content: space-between;
}
Vue数组监听
来源:CSDN
作者:深海霸主丶痞老板
链接:https://blog.csdn.net/qq_38062409/article/details/104055996