UNPKG

hana-cli

Version:
24 lines (17 loc) 589 B
sap.ui.define([ "sap/ui/core/UIComponent", "sap/ui/Device", "sap/hanacli/common/model/models" ], function (UIComponent, Device, models) { "use strict" return UIComponent.extend("sap.hanacli.common.Component", { superInit() { // call the base component's init function UIComponent.prototype.init.apply(this, arguments) // enable routing this.getRouter().initialize() // set the device model this.setModel(models.createDeviceModel(), "device") } }) })