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

    Interface InnerContent

    interface InnerContent {
        innerHTML?: InnerContentVal;
        textContent?: InnerContentVal;
    }
    Index

    Properties

    innerHTML?: InnerContentVal

    Text content of the tag.

    Warning: This is not safe for XSS. Do not use this with user input, use textContent instead.

    textContent?: InnerContentVal

    Sets the textContent of an element. Safer for XSS.