22 lines
283 B
Markdown
22 lines
283 B
Markdown
# @vue/runtime-dom
|
|
|
|
``` js
|
|
import { h, render, Component } from '@vue/runtime-dom'
|
|
|
|
class App extends Component {
|
|
data () {
|
|
return {
|
|
msg: 'Hello World!'
|
|
}
|
|
}
|
|
render () {
|
|
return h('div', this.msg)
|
|
}
|
|
}
|
|
|
|
render(
|
|
h(App),
|
|
document.getElementById('app')
|
|
)
|
|
```
|