10 lines
196 B
JavaScript
10 lines
196 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;
|
|
}
|