简单教程
提交运行
代码编辑器:
<!DOCTYPE html> <meta charset="utf-8"> <title>Vue 2 范例 - 简单教程(www.twle.cn)</title> <link href="/static/next/css/tryit.css?v=2017082407" rel="stylesheet"/> <script src="/static/lib/vue.js/2.5.9/vue.min.js"></script> <div id="app"> <div> <input v-model="parentMsg"> <br> <child v-bind:message="parentMsg"></child> </div> </div> <footer>简单教程,简单编程<br/>Copyright © 简单教程</footer> <script> // 注册 Vue.component('child', { // 声明 props props: ['message'], // 同样也可以在 vm 实例中像 “this.message” 这样使用 template: '<span>{{ message }}</span>' }) // 创建根实例 new Vue({ el: '#app', data: { parentMsg: '父组件内容' } }) </script>
运行结果: