Loading

vue组件内使用sass变量

<style lang="scss" scoped>

@import "~@/styles/variables.scss";
.fixed-header {
  background-color: $documentBg;
  width: calc(100% - #{$sideBarWidth});
}


</style>
<template>
  <div :active-text-color="variables.menuActiveText"></div>
</template>
<script>
import variables from '@/styles/variables.scss'
</script>
posted @ 2022-04-29 19:12  资深if-else侠  阅读(355)  评论(0编辑  收藏  举报