Skip to content

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

<font style="color:rgb(33, 37, 41);">@import</font><font style="color:rgb(33, 37, 41);"><style></style></font>**<font style="color:rgb(33, 37, 41);">scoped</font>**

<<font style="color:rgb(34, 134, 58);">style</font> <font style="color:rgb(0, 92, 197);">scoped</font>> <font style="color:rgb(215, 58, 73);">@import</font> <font style="color:rgb(3, 47, 98);">"../static/css/user.css"</font>; </<font style="color:rgb(34, 134, 58);">style</font>>

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