export default ({
props: {
items: {
type: Array,
default: function() {
return [];
}
},
},
data(){
return {
data:this.items
}
},
mounted() {
console.log('子组件推荐课程:',this.items)
},
watch:{
"items":function(val){
console.log(val)
}
}
})