[コレクション] Vueの知識

コンポーネントのパラメータをチェックします

props: {
	content: {
		type: string,//规定参数的类型
		required: ture,//规定参数是否是必写的
		default: 'hello world',//默认值
		//自定义校验器
		validator: function(value){
			return (value.length > 5)
		}
	}
}

コンポーネントは、ネイティブのイベントへの結合します

<child @click.native="handleClick"></child>
公開された42元の記事 ウォンの賞賛0 ビュー4086

おすすめ

転載: blog.csdn.net/weixin_43975052/article/details/104221376