组件中的data
- 组件中也可以自己的data
- 组件中的data属性只能是一个函数,函数内部必须返回一个object对象
- 组件中的data和Vue实例中的data数据使用方法一样
- 组件中的data只能在各自的组件模板中使用各自组件的data数据
- Vue实例对象中的data不能够在组件中使用
<div id="app">
<p>{
{
message}}</p>
<my-component></my-component><br>
<my-component></my-component><br>
<my-component></my-component>
</div>
<template id="MyComponent">
<div