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

7 lines
178 B
TypeScript
Raw Normal View History

2021-09-23 18:46:16 +00:00
import { h, createApp } from 'vue'
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')