@yesstudio/nuxt-composables
    Preparing search index...

    Interface SuspenseProps

    interface SuspenseProps {
        onFallback?: () => void;
        onPending?: () => void;
        onResolve?: () => void;
        suspensible?: boolean;
        timeout?: string | number;
    }
    Index

    Properties

    onFallback?: () => void
    onPending?: () => void
    onResolve?: () => void
    suspensible?: boolean

    Allow suspense to be captured by parent suspense

    false
    
    timeout?: string | number