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