mirror of
https://github.com/MCSManager/MCSManager.git
synced 2025-01-24 15:14:01 +08:00
13 lines
250 B
TypeScript
13 lines
250 B
TypeScript
import { Spin } from "ant-design-vue";
|
|
import { LoadingOutlined } from "@ant-design/icons-vue";
|
|
import { h } from "vue";
|
|
|
|
Spin.setDefaultIndicator({
|
|
indicator: h(LoadingOutlined, {
|
|
style: {
|
|
fontSize: "24px"
|
|
},
|
|
spin: true
|
|
})
|
|
});
|