Files
xl-root/src/utils/index.js
2025-04-29 19:43:06 +08:00

16 lines
315 B
JavaScript

import router from "../router/index.js";
export const toPath = (path) => {
router.push(path).then();
}
export const VITE_TINYMCE_KEY = () => {
return import.meta.env.VITE_TINYMCE_KEY;
}
export const deleteObjectFields = (obj) => {
Object.keys(obj).forEach(key => {
delete obj[key];
});
}