mirror of
https://github.com/Litlyx/litlyx
synced 2025-12-10 07:48:37 +01:00
14 lines
215 B
TypeScript
14 lines
215 B
TypeScript
|
|
|
|
export function isLiveDemo() {
|
|
const route = useRoute();
|
|
return route.path == '/live_demo';
|
|
}
|
|
|
|
const liveDemoData = useFetch('/api/live_demo');
|
|
|
|
export function useLiveDemo() {
|
|
return liveDemoData;
|
|
}
|
|
|