| 1234567891011121314151617181920212223242526272829 |
- <script>
- export default {
- name: "MenuItem",
- functional: true,
- props: {
- icon: {
- type: String,
- default: ""
- },
- title: {
- type: String,
- default: ""
- }
- },
- render(h, context) {
- const { icon, title } = context.props;
- const vnodes = [];
- if (icon) {
- vnodes.push(<i class={"svg-icon el-icon-" + icon}></i>);
- }
- if (title) {
- vnodes.push(<span slot="title">{title}</span>);
- }
- return vnodes;
- }
- };
- </script>
|