daiwei 060199cfd4 fix(v-model): preserve pre-hydration user input across native controls пре 2 месеци
..
__tests__ 8fbe48fe39 fix(v-model): handle number modifier on change (#13959) пре 5 месеци
src 060199cfd4 fix(v-model): preserve pre-hydration user input across native controls пре 2 месеци
LICENSE 34989ef7fe chore: license пре 6 година
README.md 8a99f903db style: format html&markdown files (#11531) пре 1 година
index.js e05673f4d3 refactor: rename packages пре 7 година
package.json aa9af1deed release: v3.5.27 пре 3 месеци

README.md

@vue/runtime-dom

import { h, createApp } from '@vue/runtime-dom'

const RootComponent = {
  render() {
    return h('div', 'hello world')
  },
}

createApp(RootComponent).mount('#app')