Component({
/**
* 组件的属性列表
*/
properties: {
progress: {
type: Number,
value: 0
},
isShow: {
type: Boolean,
value: false
hintText: {
type: String,
value: '下载中...'
}
* 组件的初始数据
data: {
progress: 0
* 组件的方法列表
methods: {
})