如果定义样式的时候,内层样式名称和外层保持一致的话可以简写如下
如果一个样式下有相关的其他样式可以使用 &-xxx
来简写,
<template>
<div class="test-container">
<div class="test-container-header">header</div>
<div class="test-container-body">body</div>
<div class="test-container-footer">footer</div>
</div>
</template>
<script>
export default {
}
</script>
<style lang="scss">
.test-container {
background: pink;
height: 200px;
&-header {
font-size: 24px;
color: #67c23a;
}
&-body {
font-size: 24px;
color: #f56c6c;
}
&-footer {
font-size: 24px;
color: #909399;
}
}
</style>