gov_propagandize/components/container-loading/container-loading.js
2025-02-07 16:29:25 +08:00

30 lines
508 B
JavaScript

// components/container-loading/container-loading.js
Component({
/**
* 组件的属性列表
*/
properties: {
loadingState: {
type: String,
value: 'loading'
}
},
observers: {
'loadingState': function (newVal) {
this.setData({
loadingVisible: newVal
});
}
},
data: {
loadingVisible: 'loading'
},
/**
* 组件的方法列表
*/
methods: {
}
})