Files
z_00_124_ss25_restaurant/webapp/Component.js
2025-05-21 15:00:13 +00:00

35 lines
1003 B
JavaScript

/**
* eslint-disable @sap/ui5-jsdocs/no-jsdoc
*/
sap.ui.define([
"sap/ui/core/UIComponent",
"sap/ui/Device",
"restaurant/z00124ss25restaurant/model/models"
],
function (UIComponent, Device, models) {
"use strict";
return UIComponent.extend("restaurant.z00124ss25restaurant.Component", {
metadata: {
manifest: "json"
},
/**
* The component is initialized by UI5 automatically during the startup of the app and calls the init method once.
* @public
* @override
*/
init: function () {
// 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");
}
});
}
);