用vue-cli自动生成了一个项目。在项目的根目录下,新建了一个名为style.module.css的文件,内容如下:
*{
box-sizing: border-box;
}
body,html {
margin: 0;
background-color: #fa572f;
}
.center {
margin: auto;
width: 1024px;
}
然后,在main.js中,通过 import style from './style.module.css'
导入css。
然后运行cli服务时,发现,浏览器中的.center
变成了酱紫奇怪的东东:.style-module_center_KPaYI
这是怎么回事??
/deep/
说明