loading.js 239 B

1234567891011121314151617
  1. Component({
  2. externalClasses: ['tui-loading-class'],
  3. properties: {
  4. text:{
  5. type: String,
  6. value: "正在加载..."
  7. },
  8. visible: {
  9. type: Boolean,
  10. value: false
  11. }
  12. },
  13. data: {
  14. },
  15. methods: {
  16. }
  17. })