export default { name: 'SidebarMenu', props: {item: {}}, data () { return { menuList: [{}] } }, created: function () { this.getMenuList() }, methods: { getMenuList (event) { $.getJSON('/cost-manager/sys/menu/user?_' + $.now(), function (r) { // console.log(r) this.menuList = r.menuList }) } }}menuList始终为空,赋值赋不上去,求解
添加回答
举报
0/150
提交
取消