Skip to content

Loading组件

集成和使用LoadingView组件。

效果预览

ESLoadingViewComponent

集成

  • package.json引入库
点击查看源码
js
"@extscreen/es-core": "^x.x.x"
  • main-native.js注册组件
点击查看源码
js
import {
    ESLoadingViewComponent,
} from "@extscreen/es-core";

Vue.use(ESLoadingViewComponent)

使用初探

示例代码

点击查看源码
js
<loading-view style="width: 120px;height: 120px;"/>

设置颜色

示例代码

点击查看源码
js
<loading-view color="#40b883" style="width: 120px;height: 120px;"/>