`style标签`中直接写`scss语句
`
如:
```
<style lang="scss" scoped>
.container{
margin-left: auto;
margin-right: auto;
width: 80%;
.about{
text-align: center;
img{
width: 270px;
height: 400px;
margin-bottom: 30px;
}
h3{
margin-bottom: 50px;
}
}
p{
text-indent:2em;
}
}
</style>
```
复制
> lang="scss" scoped必须有,否则无法写scss语句