EasyUI Forum

General Category => EasyUI for Vue => Topic started by: fengdie on September 25, 2018, 10:29:06 PM



Title: sidemenu component multiple level menu icon does not work properly
Post by: fengdie on September 25, 2018, 10:29:06 PM
Code:
menus:[
{
text: "报表中心",
iconCls: "fa fa-wpforms",
state: "closed",
children: [
{
text: '顾客报表',
iconCls: "fa fa-wpforms",
children: [
{
text: "客户消费明细表",
code: 'report.customer.product',
},
{
text: '客户治疗明细表',
code: 'report.customer.cure'
}
]
}
]
}
]

----------------
ps:I can't upload attachments, the prompt is full


Title: Re: sidemenu component multiple level menu icon does not work properly
Post by: stworthy on September 27, 2018, 12:01:27 AM
Please import CSS files before the 'App' component.
Code:
import 'vx-easyui/dist/themes/default/easyui.css';
import 'vx-easyui/dist/themes/icon.css';
import 'vx-easyui/dist/themes/vue.css';
import Vue from 'vue/dist/vue.js'
import App from './App.vue'