功能抽出(2)
<html>
<head>
<meta charset="utf-8">
<title>功能抽出(2)</title>
</head>
<body>
<div id="main">
<show-data v-bind:name="name"></show-data>
<input type="text" v-model="name">
</div>
</body>
<script src="vue.js"></script>
<script>
//show-data子區塊
Vue.component('show-data', {
props: ['name'],
template: '<p>{{ name }}</p>'
});
//主區塊
new Vue({
el: '#main',
data: {
name: 'eagle'
}
})
</script>
</html>