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

    Interface ResolvesDuplicates

    interface ResolvesDuplicates {
        key?: string;
        tagDuplicateStrategy?: "replace" | "merge";
    }
    Index

    Properties

    key?: string

    By default, tags which share the same unique key name, property are de-duped. To allow duplicates to be made you can provide a unique key for each entry.

    tagDuplicateStrategy?: "replace" | "merge"

    The strategy to use when a duplicate tag is encountered.

    • replace - Replace the existing tag with the new tag
    • merge - Merge the existing tag with the new tag
    'replace' (some tags will default to 'merge', such as htmlAttr)