为什么所以的例子都和extJS3中的不同。 
var panel = Ext.create('Ext.tab.Panel',{
title : 'tabpanel',
width : 200,
height : 450,
activeTab : 0,
renderTo : 'tab-container',
items : [{
title : 'tab1',
html : 'html1'
},{
title : 'tab2',
html : 'html2'
},{
title : 'tab2',
html : 'html2',
closable : true
}]
})
在extjs3中怎么用不了啊????