uni.scss
$uni-page-color: #F4F5F6; // 页面背景色
index.scss
.page {
background: $uni-page-color;
}
在外部样式文件中引用无效,而在 index.vue
中是可以的
index.vue
<template>
<view class="page">
</view>
</template>
<script>
</script>
<style lang="scss">
.page {
background: $uni-page-color;
}
</style>
8***@qq.com (作者)
谢谢
2019-07-29 17:10