chore: use more representative size check code

This commit is contained in:
Evan You 2020-01-30 12:03:38 -05:00
parent 94e80cf6d1
commit 842b368097

View File

@ -1,4 +1,6 @@
import { render, createVNode } from '@vue/runtime-dom' import { h, createApp } from '@vue/runtime-dom'
// The bare minimum code required for rendering something to the screen // The bare minimum code required for rendering something to the screen
render(createVNode('div'), document.getElementById('app')!) createApp({
render: () => h('div', 'hello world!')
}).mount('#app')