ShadowEditor/ShadowEditor.UI/test/31 HelloWorld.html
2018-11-13 07:43:53 +08:00

23 lines
521 B
HTML

<!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta charset="utf-8">
<title>31 Hello World</title>
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<link href="../assets/css/main.css" rel="stylesheet" />
</head>
<body>
<script src="../dist/ShadowUI.js"></script>
<script>
var hello = Shadow.UI.create({
xtype: 'html',
html: 'Hello, world!'
});
hello.render();
</script>
</body>
</html>