1. 程式人生 > 其它 >Vue style裡面使用@import引入外部css, 作用域是全域性的解決方案

Vue style裡面使用@import引入外部css, 作用域是全域性的解決方案

使用@import引入外部css,作用域卻是全域性的

<template>
 
</template>
 
<script>
    export default {
        name: "user"
    };
</script>
 
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
@import "../static/css/user.css";
.user-content{
  background-color: #3982e5;
}
</style>

  

Add "scoped" attribute to limit CSS to this component only

這句話大家應該是見多了, 我也使用scoped, 但是使用@import引入外部樣式表作用域依然是全域性的,看了一遍@import的規則後, 進行初步猜測,難道是@import引入外部樣式表錯過了scoped style?

又回想到此前看過的前端效能優化文章裡面都有提到,在生產環境中不要使用@import引入css,因為在請求到的css中含有@import引入css的話,會發起請求把@import的css引進來,多次請求浪費不必要的資源。

@import並不是引入程式碼到<style></style>裡面,而是發起新的請求獲得樣式資源,並且沒有加scoped

<style scoped>
@import "../static/css/user.css";
</style>

我們只需把@import改成<style src=""></style>引入外部樣式,就可以解決樣式是全域性的問題

<style scoped src="../static/css/user.css">
<style scoped>
.user-content{
  background-color: #3982e5;
}
</style>

整體程式碼如下:

<template>
 
</template>
 
<script>
    export default {
        name: "user"
    };
</script>
 
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped src="../static/css/user.css">
<style scoped>
.user-content{
  background-color: #3982e5;
}
</style>