# Loading

加载中,全局加载状态

案例
import { defineComponent } from "vue";
import { Button, Loading } from "sl-vue2-template";

export default defineComponent({
  data() {
    return {
      show: false,
    };
  },
  methods: {
    onShowModel() {
      this.show = !this.show;
    },
  },
  render() {
    return (
      <div>
        <Button handlerClick={this.onShowModel}>open</Button>
        <Loading loading={this.show} />
      </div>
    );
  },
});
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

# 属性

成员 说明 类型 必须 默认值 版本
show 可见 Boolean false --
上次更新: 3/14/2023, 11:38:10 AM