Open buddywang opened 4 years ago
如果一个prop取值有限制,可以用它来说明
export default = { props: { /** * The size of the button * @values small, normal, large */ size: { type: String, default: 'normal' } } }
不推荐使用的prop,有删除线效果
/** * An example-less button. * @deprecated Use the [only true button component](#button) instead */
指定该属性/方法/类在特定版本新增的
export default = { props: { /** * The size of the button * @values small, normal, large * @since 1.0.1 */ size: { type: String, default: 'normal' } } }
忽略该prop,在文档上不显示
props: { /** * The size of the button * @ignore */ size: { type: String, default: 'normal' } }
@param {string} somebody Somebody's name.
@event click
Tags
@values
如果一个prop取值有限制,可以用它来说明
@deprecated
不推荐使用的prop,有删除线效果
@ since
指定该属性/方法/类在特定版本新增的
@ignore
忽略该prop,在文档上不显示
修饰方法
@param {string} somebody Somebody's name.
(类型、名字、描述)@event click
(一个名为click的事件)