📜  在 vue 中定义一个数组道具 - 任何代码示例

📅  最后修改于: 2022-03-11 14:58:33.829000             🧑  作者: Mango

代码示例1
props: {
  title: String,
  likes: Number,
  isPublished: Boolean,
  commentIds: Array,
  author: Object,
  callback: Function,
  contactsPromise: Promise // or any other constructor
}