scoped css和css module都是為了控制css的區域性作用域,防止類名重複等問題。那麼兩者有什麼區別呢?
1.1.解釋
為所有類名重新生成類名,有效避開了css權重和類名重複的問題。css module直接替換了類名,排除了使用者設定類名影響元件樣式的可能性,這樣就不必為了命名絞盡腦汁。
1.2實現原理
通過給樣式名加hash字串字尾的方式,實現特定作用域語境中的樣式編譯後的樣式在全域性唯一。
1.3使用方法
//webpack.base.conf.jsmodule: { rules: [ // ... 其它規則省略 { test: /\.css$/, use: [ 'vue-style-loader', { loader: 'css-loader', options: { // 開啟 CSS Modules modules: true, // 自定義生成的類名 localIdentName: '[local]_[hash:base64:8]' } } ] } ] }
<style module>.red { color: red;}.bold { font-weight: bold;}</style>
<template> <p :class="$style.red"> This should be red </p></template><template> <p> <p :class="{ [$style.red]: isRed }"> Am I red? </p> <p :class="[$style.red, $style.bold]"> Red and bold </p> </p></template>
<script>export default { created () { console.log(this.$style.red) // -> "red_1VyoJ-uZ" // 一個基於檔名和類名生成的識別符號 }}</script>
1.4使用效果
<template> <p :class="$style.gray"> Im gray </p></template><style module>.gray { color: gray;}</style>
編譯後結果:
//編譯結果<p class="gray_3FI3s6uz">Im gray</p>.gray_3FI3s6uz { color: gray;}
1.5注意點
2.1實現原理
vue通過在DOM結構以及css樣式上加唯一不重複的標記,以保證唯一,達到樣式私有化模組化的目的。無法完全避開css權重和類名重複的問題。
2.2使用方法
在 < style >標籤新增 scoped屬性
2.3使用效果
<style scoped>h1 { color: #f00;}</style>
編譯後結果:
h1[data-v-4c3b6c1c] { color: #f00;}
2.4缺點
css module實際效果要比scoped較好,而且css module設定並不難,所以我更推薦css module。
(學習視訊分享:)
以上就是詳細解答css作用域之scoped css和css module的區別的詳細內容,更多請關注TW511.COM其它相關文章!