mirror of https://github.com/vuejs/core.git
chore: format
This commit is contained in:
parent
e5a6fe42ea
commit
8c1f61d050
|
|
@ -8,14 +8,14 @@ It can also be used as a reference for implementing a custom renderer.
|
|||
import { h, render, nodeOps, dumpOps } from '@vue/runtime-test'
|
||||
|
||||
const App = {
|
||||
data () {
|
||||
data() {
|
||||
return {
|
||||
msg: 'Hello World!'
|
||||
msg: 'Hello World!',
|
||||
}
|
||||
},
|
||||
render () {
|
||||
render() {
|
||||
return h('div', this.msg)
|
||||
}
|
||||
},
|
||||
}
|
||||
|
||||
// root is of type `TestElement` as defined in src/nodeOps.ts
|
||||
|
|
|
|||
Loading…
Reference in New Issue