NumberSelectBitrateComponent

This component allows you to create a bitrate component and select its options

Example

NumberSelectBitrateComponent

export default {
  name: "App",
  data() {
    return {
      form: {
        servicesDefinition: {
          type: NumberSelectBitrateComponent,
          default: 0,
          "field-wrapper": { class: "is-12" },
          "field-input": {
            isRequired: false,
            label: "label",
            placeholder: this.$t("placeholder", {
              key: this.$t("bitrate").toLowerCase(),
            }),
            controlsPosition: "compact",
            controlsAlignment: "center",
            showClearIcon: true,
            min: 0,
          },
          events: {
            input: (val) => {},
          },
        },
      },
    };
  },
};

Props

NameDescriptionTypeRequiredDefault
horizontal-Booleanfalsetrue
vid-Stringfalseundefined
value-falsenull
labelInside-Booleanfalsefalse
labelOnBorder-Booleanfalsefalse
validationMode-Stringfalse"aggressive"
hideValidation-Booleanfalsefalse
isRequired-Booleanfalsetrue
minMinimum allowed valueNumberfalse-
maxMaximum allowed valueNumberfalse-
stepIncremental number stepNumberfalse1
controlsRounded-Booleanfalsetrue
controls-Booleanfalsetrue
controlsPositionPosition of controlsStringfalse""
controlsAlignment-Stringfalse"right"
showClearIcon-Booleanfalsefalse
localeLocale string {en, es ...} for display language on componentStringfalse"en"
clearIconCustomClass-Stringfalse""

Events

Event NameDescriptionParameters
input--

ut|-|-|