vue3 怎么做到,每个页面里的CSS 只给当前页面用(类似微信小程序 那样)
这篇博客或许对你有所帮助:https://blog.csdn.net/m0_62742402/article/details/127667135
加一个scope 在style标签上
<style scoped>
/**弹框 */
.instruction-dialog {
margin-top: 10px;
margin-bottom: 15px;
height: 80%;
}
.instruction-dialog-content {
color: #323232;
padding: 15px;
font-size: 11px;
}
.dialog-button-bg {
background: white;
text-align: center;
position: fixed;
left: 0px;
right: 0px;
bottom: 0px;
}
</style>