Add to git
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
<div>
|
||||
my app-root html here!
|
||||
</div>
|
||||
@@ -0,0 +1,8 @@
|
||||
html, body {
|
||||
position: relative;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
background: rgb(179, 179, 179);
|
||||
margin: 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
require("./boot.less");
|
||||
var bootHtml = require("./boot.html");
|
||||
var appEle = document.createElement("app-root");
|
||||
appEle.innerHTML = bootHtml;
|
||||
|
||||
document.body.appendChild(appEle);
|
||||
Reference in New Issue
Block a user