mirror of
https://github.com/speatzle/nfsense.git
synced 2025-05-11 02:48:21 +00:00
9 lines
No EOL
230 B
TypeScript
9 lines
No EOL
230 B
TypeScript
import { useRouter } from 'vue-router';
|
|
import { useToast } from "vue-toast-notification";
|
|
|
|
export default function initiateCommonPlugins() {
|
|
const router = useRouter();
|
|
const toast = useToast();
|
|
|
|
return { router, toast };
|
|
} |