vue3-yuanma/packages/runtime-test/README.md

35 lines
469 B
Markdown
Raw Normal View History

2018-10-27 03:44:50 +08:00
# @vue/runtime-test
2018-10-02 01:15:07 +08:00
``` js
import {
h,
render,
Component,
nodeOps,
startRecordingOps,
dumpOps
2018-10-27 03:44:50 +08:00
} from '@vue/runtime-test'
2018-10-02 01:15:07 +08:00
class App extends Component {
data () {
return {
msg: 'Hello World!'
}
}
render () {
return h('div', this.msg)
}
}
// root is of type `TestElement` as defined in src/nodeOps.ts
const root = nodeOps.createElement('div')
startRecordingOps()
render(h(App), root)
const ops = dumpOps()
console.log(ops)
```