1 安装sass
npm install sass --save-dev
2 测试应用
<script setup></script>
<template>
<h1>
这是组件A
<div>这是div</div>
</h1>
</template>
<style scoped lang="scss">
h1 {
font-size: 20px;
div {
color: red;
}
}
</style>
3 清除所有默认项目样式
新建一个reset.scss
*,
*:after,
*:before {
box-sizing: border-box;
outline: none;
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
t