Skip to content

Instantly share code, notes, and snippets.

View Azhung's full-sized avatar

liyuanzhuang Azhung

View GitHub Profile
@dickenslian
dickenslian / vdom_v1.html
Last active September 14, 2021 02:35
你不知道对Virtual DOM(一)
<body>
<script src="compiled.js"></script>
<style>
body { margin: 0; font-size: 24; font-family: sans-serif }
.li-1 { background: red }
</style>
<main id="main"></main>
<script>
var main = document.getElementById('main')
render(main)