EASYAIuniappNewUI/node_modules/@tuniao/tnui-vue3-uniapp/libs/dayjs/plugin/toObject/index.js
2025-02-08 18:50:38 +08:00

15 lines
288 B
JavaScript

export default (function (o, c) {
var proto = c.prototype;
proto.toObject = function () {
return {
years: this.$y,
months: this.$M,
date: this.$D,
hours: this.$H,
minutes: this.$m,
seconds: this.$s,
milliseconds: this.$ms
};
};
});