vue学习笔记3 v-for加排序
items是一个数组 <li v-for="(student,index) in sortStudent">{{index}}姓名:{{student.name}} 年龄:{{stude ...
items是一个数组 <li v-for="(student,index) in sortStudent">{{index}}姓名:{{student.name}} 年龄:{{stude ...
component 标签 Vue框架自定义的标签,它的用途就是可以动态绑定我们的组件,根据数据的不同更换不同的组件。 例: 1、自定义3个组件 var cpA={ template ...
propsData 不是和属性有关,他用在全局扩展时进行传递数据。 先写一个全局扩展 var header_a = Vue.extend({ template:`{{message}} ...