Files
xl-root/src/utils/index.js

16 lines
315 B
JavaScript
Raw Normal View History

2025-02-28 09:56:01 +08:00
import router from "../router/index.js";
export const toPath = (path) => {
router.push(path).then();
}
2025-03-19 16:43:17 +08:00
export const VITE_TINYMCE_KEY = () => {
return import.meta.env.VITE_TINYMCE_KEY;
}
2025-04-29 19:43:06 +08:00
export const deleteObjectFields = (obj) => {
Object.keys(obj).forEach(key => {
delete obj[key];
});
}