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
|
2020-01-30 17:03:38 +00:00
|
|
|
createApp({
|
|
|
|
render: () => h('div', 'hello world!')
|
|
|
|
}).mount('#app')
|