当我构建我的 vue 项目时,它的不透明度从 50% 更改为 1%。
在开发中它没有这个问题,但在生产中它改变了风格。
开发(npm run serve): 点击查看
.VueCarousel-dot-container button.VueCarousel-dot {
background-color: #7390a7 !important;
opacity: 60%;
}
Run Code Online (Sandbox Code Playgroud)
生产(npm run build):当我构建并上传它时:
.VueCarousel-dot-container button.VueCarousel-dot {
background-color: #7390a7!important;
opacity: 1%;
}
Run Code Online (Sandbox Code Playgroud)