css module

108 阅读1分钟

命名

<template>
  <div :class="[zs.color, zs.bgc]">
    1234
  </div>
</template>

<style module="zs" lang="scss" scoped>
.color {
  color: red;
}
.bgc {
  width: 200px;
  height: 200px;
  background-color: blue;
}
</style>

不命名

<template>
  <div :class="[$style.color, $style.bgc]">
    1234
  </div>
</template>

<style module lang="scss" scoped>
.color {
  color: red;
}
.bgc {
  width: 200px;
  height: 200px;
  background-color: blue;
}
</style>