chore: format

This commit is contained in:
daiwei 2025-09-15 10:18:59 +08:00
parent e5a6fe42ea
commit 8c1f61d050
1 changed files with 4 additions and 4 deletions

View File

@ -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