如何產生
在開發專案中遇到在元件中新增樣式不生效的情況。具體場景如下
vue 元件
<template>
<div class="box" data-v-33f8ed40></div>
<template>
//我用js在上面div標籤中插入一個<p class='text'>text goes here</p>
<script>
export default {
...
mounted(){
$('.box').html('<p class="text">text goes here</p>')
},
...
}
</script>
//style , vue元件scoped樣式都會在選擇器的最後加上data-v-***屬性
<style scoped>
//樣式新增了scoped
.box{
color:red;
}
.text{
color:blue;
}
</style>
瀏覽器渲染的html 和 style 如下:
//html
<div class="box" data-v-33f8ed40>
<p class='text'>text goes here</p>
</div>
//style
.box[data-v-33f8ed40]{
color:red;
}
.text[data-v-33f8ed40]{ //樣式不生效,因為p標籤裡沒有屬性data-v-33f8ed40
color:blue;
}
如何解決
很簡單將去掉 style 的 scoped 屬性。