vue中组件中的css部分可以用less写吗
vue中的组件中css可以写成less吗
vue中的组件中css可以写成less吗
2017-02-08
可以 标注 lang=less/sass
<style lang='less'>
.current-position { $height: 36px; background-color: #fffed9; border-radius: 2px; overflow: hidden; height: $height; line-height: $height; padding: 0 10px; position: relative; &:before {
@include border($borderColor: #ffda82); }
strong { float: left; }
div { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; color: #fd3846; }
}</style>
举报