2018-10-26 15:44:50 -04:00
|
|
|
# @vue/runtime-dom
|
2018-09-19 11:35:38 -04:00
|
|
|
|
|
|
|
``` js
|
2018-10-26 15:44:50 -04:00
|
|
|
import { h, render, Component } from '@vue/runtime-dom'
|
2018-09-19 11:35:38 -04:00
|
|
|
|
|
|
|
class App extends Component {
|
|
|
|
data () {
|
|
|
|
return {
|
|
|
|
msg: 'Hello World!'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
render () {
|
|
|
|
return h('div', this.msg)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
render(
|
|
|
|
h(App),
|
|
|
|
document.getElementById('app')
|
|
|
|
)
|
|
|
|
```
|