7 lines
191 B
TypeScript
7 lines
191 B
TypeScript
import { h, createApp } from '@vue/runtime-dom'
|
|
|
|
// The bare minimum code required for rendering something to the screen
|
|
createApp({
|
|
render: () => h('div', 'hello world!')
|
|
}).mount('#app')
|