scoped<p>当父组件的 <style> 标签中使用 scoped</p> <pre><code class="language-css">&lt;style scoped&gt; .hello { color: red; } &lt;/style&gt;</code></pre> <p>这个 css 只会作用于当前组件 特别注意:若子组件的根节点也有 .hello ,那么也会受到此影响</p>