我正在使用react-select https://github.com/JedWatson/react-select向我的组件添加一个下拉列表。我能够得到下拉菜单。但是不知何故,默认样式未得到应用。我尝试了一些解决方案,但无济于事。 解决方案1) a)在webpack.config.dev.js中,将以下内容添加到加载器中
{
test: /\.css$/,
include: /node_modules/,
loader: "style!css!postcss"
},
{
test: /\.css$/,
exclude: /node_modules/,
loader:
"style!css?modules&localIdentName=[name]---[local]---[hash:base64:5]!postcss"
}
b)导入从组件的“反应选择”中选择 解决方案2) a)在组件所在的同一文件夹中,将其粘贴自node-modules / react-select / dist / react-select.css中的react-select.css b)将其导入组件中- 导入“ ./react-select.css”
结果仍然相同。缺少了什么 我的问题与以下问题相同-https://github.com/JedWatson/react-select/issues/618 我无法实现上述问题中提到的解决方案。