7 lines
191 B
TypeScript
Raw Normal View History

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