Blame view

src/setup/ant-design-vue/spin.tsx 276 Bytes
陈文彬 authored
1
2
3
4
5
6
import { Spin } from 'ant-design-vue';
import svgImg from '/@/assets/images/loading.svg';

Spin.setDefaultIndicator({
  indicator: () => {
    return (
vben authored
7
      <div class="app-svg-loading">
vben authored
8
        <img src={svgImg} alt="" height="32" width="32" />
陈文彬 authored
9
10
11
12
      </div>
    );
  },
});