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

    Interface UseIgnorableWatch

    Represents an ignorable watch effect.

    interface UseIgnorableWatch {
        ignore(update: () => void): void;
        stop(): void;
    }
    Index

    Methods

    Methods

    • Temporarily ignores updates from the watch sources.

      Parameters

      • update: () => void

        The callback to invoke while updates are ignored.

      Returns void