"使用PrimeVue库时,Vue3中的:deep()选择器无效"
<p>我正在使用vue3和PrimeVue库。当我尝试使用<code>:deep()</code>选择器覆盖PrimeView组件的css字段时,它没有任何效果。只有当我使用非作用域样式时,它才会应用我的更改。我对为什么它不起作用感到困惑。</p>
<p>带有<code>:deep()</code>的示例代码:</p>
<pre class="brush:js;toolbar:false;"><template>
<Toast position='buttom-right'/>
</template>
<style scoped>
:deep(.p-toast-message-icon) {
margin-right: 10px !important;
}
</style>
</pre>
<p>这样不起作用。</p>
<p>但是当使用没有作用域的<code>style</code>时,就像这样:</p>
<pre class="brush:js;toolbar:false;"><style>
.p-toast-message-icon {
margin-right: 10px !important;
}
</style>
</pre>
<p>这样就起作用了。</p>