我正在尝试将轮播添加到面板视图中,该视图内部有几个子面板。当我运行代码时,虽然我从轮播中看不到任何东西。其他面板看起来很好。这是我现在得到的代码
Ext.define('app.view.HeroDetail', {
extend: 'Ext.Panel',
requires: ['Ext.Carousel'],
xtype: 'herodetail',
layout: 'vbox',
fullscreen: true,
config: {
items: [
{
xtype: 'panel',
html: 'first panel',
flex: 1
},
{
xtype: 'carousel',
items: [
{
xtype: 'panel',
html: 'carousel1'
},
{
xtype: 'panel',
html: 'carousel2'
}
],
flex: 1
},
{
xtype: 'panel',
html: 'second panel',
flex: 1
}
]
}
});
我在这里想念什么?