标签:class 数据类型 模板 template fun red 方式 问题: default
1、在声明组件对象中使用 props 选项指定
const MyComponent = {
template:‘<div></div>‘,
props: 此处值有以下3中方式,
components:{
}
}
方式一:指定传递属性名,注意是数组形式。
props:[‘id‘,‘name‘,‘sarlary‘,‘isPublished‘]
方式二:指定属性名和数据类型,注意是对象形式。
props:{
id:Number,
name:String,
salary:Number,
isPublished:Boolean,
commentIds:Array,
author:Object,
getEmp:Function
}
方式三:指定属性名、数据类型、必要性、默认值。
props:{
name:{
type:String,
required:true,
default:‘wjw‘
}
}
在引用组件时,通过 v-bind 动态赋值
<my-component v-bind:id="2" :name="wangjiawei" :salary="9999" :is-published="true" :comment-ids="[1,2]" :author="{name:‘alan‘}" :get-emp="getEmp">
</my-component>
标签:class 数据类型 模板 template fun red 方式 问题: default
原文地址:https://www.cnblogs.com/wjw1014/p/13395113.html