|
4 주 전 | |
---|---|---|
.. | ||
node_modules | 4 주 전 | |
LICENSE | 4 주 전 | |
README.md | 4 주 전 | |
index.js | 4 주 전 | |
package.json | 4 주 전 |
import { h, createApp } from '@vue/runtime-dom'
const RootComponent = {
render() {
return h('div', 'hello world')
},
}
createApp(RootComponent).mount('#app')