问题描述
使用@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><template