12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <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) {
- if (icon.includes('el-icon')) {
- vnodes.push(<i class={[icon, 'sub-el-icon']} />)
- } else if (icon.includes('icon-common')) {
- vnodes.push(<i class={[icon, 'icon', 'iconfont']} style='margin-right: 5px' />)
- } else {
- vnodes.push(<svg-icon icon-class={icon}/>)
- }
- }
- if (title) {
- vnodes.push(<span slot='title'>{(title)}</span>)
- }
- return vnodes
- }
- }
- </script>
- <style scoped>
- .sub-el-icon {
- color: currentColor;
- width: 1em;
- height: 1em;
- }
- </style>
|