在App.vue中导入了demo组件、注册了局部组件,并且用了demo的组件
App.vue是父组件,demo.vue是子组件
效果展示:stu1中的参数固定,不能动态变化,缺点很明显
班级{{cls}}</h1>
"1">
学号</th>
年领</th>
名字</th>
</tr>
for="item in stu1">
{{item.id}}</td>
{{item.name}}</td>
{{item.age}}</td>
</tr>
</table>
</template>