define(['dojo/_base/declare','dijit/MenuBarItem','../app/Router' ], function(declare,MenuBarItem,Router) { return declare([MenuBarItem], { options:{ path: null }, onClick: function(){ if ( this.path ) { Router.go(this.path); } } }); });