|
|
hace 7 años | |
|---|---|---|
| .. | ||
| src | aac7805b3a refactor: use shared util, remove unused regex | hace 7 años |
| .npmignore | d1bc6ee8d6 chore: setup all packages | hace 7 años |
| README.md | d1bc6ee8d6 chore: setup all packages | hace 7 años |
| index.js | d1bc6ee8d6 chore: setup all packages | hace 7 años |
| jsx.d.ts | b3e3fd6ef5 types: basic tsx support | hace 7 años |
| package.json | 6e04850d71 build: adjust types build script | hace 7 años |
import { h, render, Component } from '@vue/renderer-dom'
class App extends Component {
data () {
return {
msg: 'Hello World!'
}
}
render () {
return h('div', this.msg)
}
}
render(
h(App),
document.getElementById('app')
)