vue3-yuanma/packages/size-check/src/index.ts

7 lines
191 B
TypeScript
Raw Normal View History

2021-10-08 18:23:30 +00:00
import { h, createApp } from '@vue/runtime-dom'
2019-12-10 16:31:57 +00:00
// The bare minimum code required for rendering something to the screen
createApp({
render: () => h('div', 'hello world!')
}).mount('#app')