切换成 vue + ant-design-vue 就能满足你的要求了
这。。。哈哈就是为了学react的
@梨。涡: 可以使用 Webpack Provide Plugin,在 webpack 配置文件里面配置
大概就像这个样子
const webpack = require('webpack')
plugins: [
new webpack.ProvidePlugin({
Button: ['antd', 'Button'],
// ...
})
]
@by.Genesis: 待我研究下~