chore: upgrade jsx to alpha.5
parent
4311c15755
commit
de922bebba
|
@ -6,7 +6,6 @@ import { ConfigConsumerProps } from '../config-provider';
|
||||||
import BreadcrumbItem from './BreadcrumbItem';
|
import BreadcrumbItem from './BreadcrumbItem';
|
||||||
import Menu from '../menu';
|
import Menu from '../menu';
|
||||||
|
|
||||||
const MenuItem = Menu.Item;
|
|
||||||
const Route = PropTypes.shape({
|
const Route = PropTypes.shape({
|
||||||
path: PropTypes.string,
|
path: PropTypes.string,
|
||||||
breadcrumbName: PropTypes.string,
|
breadcrumbName: PropTypes.string,
|
||||||
|
@ -78,7 +77,7 @@ export default {
|
||||||
overlay = (
|
overlay = (
|
||||||
<Menu>
|
<Menu>
|
||||||
{route.children.map(child => (
|
{route.children.map(child => (
|
||||||
<MenuItem key={child.breadcrumbName || child.path}>
|
<Menu.Item key={child.breadcrumbName || child.path}>
|
||||||
{itemRender({
|
{itemRender({
|
||||||
route: child,
|
route: child,
|
||||||
params,
|
params,
|
||||||
|
@ -86,7 +85,7 @@ export default {
|
||||||
paths: this.addChildPath(paths, child.path, params),
|
paths: this.addChildPath(paths, child.path, params),
|
||||||
h: this.$createElement,
|
h: this.$createElement,
|
||||||
})}
|
})}
|
||||||
</MenuItem>
|
</Menu.Item>
|
||||||
))}
|
))}
|
||||||
</Menu>
|
</Menu>
|
||||||
);
|
);
|
||||||
|
|
|
@ -58,7 +58,7 @@
|
||||||
"vue-template-compiler": ">=2.6.0"
|
"vue-template-compiler": ">=2.6.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@ant-design-vue/babel-plugin-jsx": "^1.0.0-alpha.3",
|
"@ant-design-vue/babel-plugin-jsx": "^1.0.0-alpha.5",
|
||||||
"@babel/cli": "^7.8.4",
|
"@babel/cli": "^7.8.4",
|
||||||
"@babel/core": "^7.9.6",
|
"@babel/core": "^7.9.6",
|
||||||
"@babel/runtime": "^7.10.1",
|
"@babel/runtime": "^7.10.1",
|
||||||
|
|
Loading…
Reference in New Issue