NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/ant-design-vue/lib/vc-upload/src/uid.js
2023-09-14 14:47:11 +08:00

12 lines
208 B
Java

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports["default"] = uid;
var now = +new Date();
var index = 0;
function uid() {
return "vc-upload-" + now + "-" + ++index;
}