ue3
Version:
ue3 build your own vue for learning.
26 lines (24 loc) • 566 B
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>Document</title>
<style>
.app-2 {
width: 200px;
height: 200px;
background: red;
display: flex;
justify-content: center;
align-content: center;
}
</style>
</head>
<body>
<div id="app"></div>
<div id="app-2"></div>
</body>
<script src="./index.js" type="module"></script>
</html>