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