mirror of
https://github.com/abap2UI5/abap2UI5.git
synced 2025-04-30 07:46:15 +08:00
36 lines
1000 B
HTML
36 lines
1000 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<title></title>
|
|
<style>
|
|
html, body, body > div, #container, #container-uiarea {
|
|
height: 100%;
|
|
}
|
|
</style>
|
|
<script
|
|
id="sap-ui-bootstrap"
|
|
src="resources/sap-ui-core.js"
|
|
data-sap-ui-theme="sap_horizon"
|
|
data-sap-ui-resourceroots='{
|
|
"z2ui5": "./"
|
|
}'
|
|
data-sap-ui-oninit="module:sap/ui/core/ComponentSupport"
|
|
data-sap-ui-compatVersion="edge"
|
|
data-sap-ui-async="true"
|
|
data-sap-ui-frameOptions="trusted"
|
|
></script>
|
|
</head>
|
|
<body class="sapUiBody sapUiSizeCompact" id="content">
|
|
<div
|
|
data-sap-ui-component
|
|
data-name="z2ui5"
|
|
data-id="container"
|
|
data-settings='{"id" : "z2ui5"}'
|
|
data-handle-validation="true"
|
|
></div>
|
|
</body>
|
|
</html>
|