Vue 组件之间传值、调用组件的函数

传值:

组件:

@Component({
  props: {
    photoLists: {}
  }
})

调用组件:

.ts

private photoLists = [];

.vue

调用函数:

.vue

// 组件

.ts

private showPopup() {
    (this as any).$refs.photograph.showType();   // showType是photograph中的函数
  }

 

你可能感兴趣的:(Vue 组件之间传值、调用组件的函数)