hongluan-ui
Version:
Hongluan Component Library for Vue 3
37 lines (32 loc) • 1.08 kB
JavaScript
'use strict';
Object.defineProperty(exports, '__esModule', { value: true });
var vue = require('vue');
var useCustom = require('./use-custom.js');
var pluginVue_exportHelper = require('../../../_virtual/plugin-vue_export-helper.js');
const _sfc_main = vue.defineComponent({
name: "SystemLoading",
setup() {
const { CustomIcon } = useCustom.useCustomIcon("SystemLoading");
return {
CustomIcon
};
}
});
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
return _ctx.CustomIcon ? (vue.openBlock(), vue.createBlock(vue.resolveDynamicComponent(_ctx.CustomIcon), { key: 0 })) : (vue.openBlock(), vue.createElementBlock("svg", {
key: 1,
class: "tail",
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 50 50",
name: "SystemLoading"
}, [
vue.createElementVNode("circle", {
cx: "25",
cy: "25",
r: "20"
})
]));
}
var SystemLoading = /* @__PURE__ */ pluginVue_exportHelper["default"](_sfc_main, [["render", _sfc_render]]);
exports["default"] = SystemLoading;
//# sourceMappingURL=loading.js.map