为什么引入css样式文件能够作用到全局?而引入js文件就只能在当前模块下产生作用?main.js
import a from './a.js';//样式文件import './index.css'
a.js
export default "hello world"
index.css
.title{ color:red }
蝴蝶刀刀
相关分类