yingsa/admin/node_modules/element-plus/lib/components/calendar/src/select-controller.js
2026-01-20 08:50:50 +08:00

24 lines
638 B
JavaScript

'use strict';
Object.defineProperty(exports, '__esModule', { value: true });
var runtime = require('../../../utils/vue/props/runtime.js');
var shared = require('@vue/shared');
const selectControllerProps = runtime.buildProps({
date: {
type: runtime.definePropType(Object),
required: true
},
formatter: {
type: runtime.definePropType(Function)
}
});
const selectControllerEmits = {
"date-change": (date) => shared.isObject(date) || shared.isString(date)
};
exports.selectControllerEmits = selectControllerEmits;
exports.selectControllerProps = selectControllerProps;
//# sourceMappingURL=select-controller.js.map