.webpackrc.js,是吗?
当我import {Select} from antd
的Select没有样式时,只是移动样式的工作。
entry: "src/index.js",
theme: 'src/theme.js',
extraBabelPlugins: [[
"import",
{libraryName: "antd-mobile",
"libraryDirectory": "lib", "style":true},
{libraryName: "antd",
"libraryDirectory": "lib", "style": true}
]],
答案 0 :(得分:0)
确保您以大写字母开头编写了正确的组件Select
。
还是尝试其他组件以查看是否相同?
答案 1 :(得分:0)
尝试通过添加手动导入 css
import 'antd/dist/antd.css';
或 import 'antd/dist/antd.less'