django-vue3-admin-web/node_modules/vxe-pc-ui/lib/radio-button/index.js
2025-10-20 21:21:14 +08:00

19 lines
759 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = exports.VxeRadioButton = exports.RadioButton = void 0;
var _core = require("@vxe-ui/core");
var _button = _interopRequireDefault(require("../radio/src/button"));
var _dynamics = require("../dynamics");
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
const VxeRadioButton = exports.VxeRadioButton = Object.assign(_button.default, {
install: function (app) {
app.component(_button.default.name, _button.default);
}
});
_dynamics.dynamicApp.use(VxeRadioButton);
_core.VxeUI.component(_button.default);
const RadioButton = exports.RadioButton = VxeRadioButton;
var _default = exports.default = VxeRadioButton;