You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
674 B
19 lines
674 B
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = exports.VxeIcon = exports.Icon = void 0;
|
|
var _core = require("@vxe-ui/core");
|
|
var _dynamics = require("../dynamics");
|
|
var _icon = _interopRequireDefault(require("./src/icon"));
|
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
var VxeIcon = exports.VxeIcon = Object.assign({}, _icon.default, {
|
|
install: function install(app) {
|
|
app.component(_icon.default.name, _icon.default);
|
|
}
|
|
});
|
|
_dynamics.dynamicApp.use(VxeIcon);
|
|
_core.VxeUI.component(_icon.default);
|
|
var Icon = exports.Icon = VxeIcon;
|
|
var _default = exports.default = VxeIcon;
|