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