HBuilderX: vue doc使用教程
HBuilderX 1.9.0 新增了vue doc
功能
什么是 vue doc ?
可以理解为,vue组件
使用说明。
在其它文件,使用组件
的时候,弹出代码提示。
什么是组件?组件是可复用的 Vue 实例,且带有一个名字。
语法
主要用在script
部分,需要写在export default上面
/*** 这里是一个组件描述,会在提示标签的时候显示
* @description 这里也是一个组件描述
* @tutorial https://uniapp.dcloud.io/api/media/image?id=chooseimage
* @property {String} type = [button|input|...值域] 这里是属性描述
* @event {Function} tap 这是是事件描述
* @example 这里是示例代码
*/
其中@property和@event内{
}
中间的是类型,event的类型必须是Function。
示例
<script>/**
* 翻页组件
* @description 翻页组件
* @tutorial http://www.baidu.com
* @property {Number} total 翻页数据总数
* @property {String} size = [big|small] 组件大小
* @event {Function} close 关闭事件
* @example <Pagination @total="50" @close=""></Pagination>
*/
export default {
props: {
"total": Number,
"size": String
},
data () {
return {
pageSize: 10,
pageNumber: 0
}
},
methods: {
handleChange(data, event) {
this.$emit('PsPn', this.pageSize, this.pageNumber)
}
}
}
</script>
组件提示,效果如下:
属性提示:
事件提示:
以上是 HBuilderX: vue doc使用教程 的全部内容, 来源链接: utcz.com/a/28684.html