@vinejs/vine - v4.0.0-next.1
    Preparing search index...

    Type Alias AlphaOptions

    Options accepted by the alpha validation rule. Controls which additional characters are allowed in alphabetic validation.

    const options: AlphaOptions = {
    allowSpaces: true,
    allowUnderscores: false,
    allowDashes: true
    }
    type AlphaOptions = {
        allowSpaces?: boolean;
        allowUnderscores?: boolean;
        allowDashes?: boolean;
    }
    Index

    Properties

    allowSpaces?: boolean

    Whether to allow space characters

    allowUnderscores?: boolean

    Whether to allow underscore characters

    allowDashes?: boolean

    Whether to allow dash/hyphen characters