console
Vue.component('form-component', {
template: '#form',
props: ['user']
})
Vue.component('hello-component', {
template: '#hello',
props: ['user'],
data: function() {
return {
msg: 'hello'
}
}
})
new Vue({
el: '#app',
data() {
return {
user: {
name: 'zs'
}
}
}
})
<template id="form">
<div>
<label for="name">
type your name:
</label>
<input type="text" v-model:user="user.name" id="name" />
</div>
</template>
<template id="hello">
<h1>
{{msg}} {{user.name}}
</h1>
</template>
<div id="app">
<form-component :user="user">
</form-component>
<hello-component :user="user">
</hello-component>
</div>