Vue Bootstrap Inputs
Vue Inputs - Bootstrap 4 & Material Design
Note: This documentation is for an older version of Bootstrap (v.4). A
newer version is available for Bootstrap 5. We recommend migrating to the latest version of our product - Material Design for
Bootstrap 5.
Go to docs v.5
Vue Bootstrap input is a special field which is used in order to receive data from the user. Used mostly in a variety of web-based forms. You can use material design version or default bootstrap style.
Vue live previewBinding value
Vue Input behaves just like a regular input - bind the value with
v-model
or listen to theinput
andchange
events it emits.
Input sizing
Inputs are provided in 3 sizes: small - sm
, medium (default) - md
and large -
lg
. Use prop size
to monipualte them.
Icon prefixes
You can add icons to your inputs. Just use prop icon
with icon name.
Placeholder
To describe what the input stands for we use labels or placeholders. To set placeholder
use it as a
prop.
Label
Label set up is the same as placeholder's. Jus set appropriate prop label
.
Disabled
To prevent user interactions add boolean disabled
prop.
Numeric input
Use following example to define a field for entering a number
Help text
Block-level help text in forms can be created using
.form-text
(previously known as
.help-block
in v3).
Help text below inputs can be styled with
.form-text
. This class includes
display: block
and adds some top margin for easy spacing from the inputs above
it.
While using material inputs pass a string with a desired text to a
small
property.
Default input
Material input
Character counter MDB Pro component
Use a character counter in fields where a character restriction is in place.
Input field
Outline inputs - Material 2.0
New Material 2.0 styles of inputs
Input field
Default styling for Bootstrap Input component.
Prefix
Disabled
Textarea
Textareas allow larger expandable user input. The border should light up simply and clearly indicating which field the user is currently editing.
Inputs with background and animated border - Material 2.0
New Material 2.0 styles of inputs
Input field
A fix for default background color of input in the browser
When you use a browser, sometimes you safe your e-mail address and the password on the page. On any website where you have a form and you safed your data, Chrome is auto-filling the email and password fields and changes the background color to a pale yellow or blue color.
To avoid this default behavior of the browser, you can use a solution below:
Basic solution
In our basic example we want to remove blue background and black text and change to transparent background and grey text.
Here you can find a snippet with working example. It works with outline inputs too.
Note: If you need other background and text colors, don't hesitate to create your own color options. Below, you can see whole white form.
Input - API
In this section you will find advanced information about the Input component. You will learn which modules are required in this component, what are the possibilities of configuring the component, and what events and methods you can use to work with it.
Import statement
API Reference: Properties
API mdbNumericInput: Properties
We ecourage you to use our default mdb-input
with property
type="number"
- this way you get access to more properties and
events.
Name | Type | Default | Description | Example |
---|---|---|---|---|
emptyValue |
Number | 0 |
Default input value |
<mdb-numeric-input :emptyValue="5" ... />
|
max |
Number |
|
Maximal input value |
<mdb-numeric-input :max="10" ... />
|
min |
Number |
|
Minimal input value |
<mdb-numeric-input :min="0" ... />
|
minus |
Boolean | false |
Applies negative values |
<mdb-numeric-input minus ... />
|
placeholder |
String | '' |
Applies input's placeholder |
<mdb-numeric-input placeholder="Number" ... />
|
separator |
String | ',' |
Input's value separation symbol |
<mdb-numeric-input separator="." ... />
|
API Reference: Events
Name | Description | Example |
---|---|---|
v-on:input |
Used to listen to input event, returns Event |
<mdb-input @input="hanelOnInput" />
|
v-on:change |
Emitted on input's native change event, meaning when
the field looses focus, but also then the value is changed
dynamically.
|
<mdb-input @change="hanelOnChange" />
|
v-on:focus |
Emitted on input's native focus event, meaning when the
field gains focus.
|
<mdb-input @focus="onFocus" />
|
v-on:blur |
Emitted on input's native blur event, meaning when the
field looses focus.
|
<mdb-input @blur="onBlur" />
|
API Reference: Directives
Name | Description | Example |
---|---|---|
v-model |
Vue.js's directive for emulating input element's two-way data
binding. It is syntactic sugar for chaining together
value prop and input event listener.
|
<mdb-input v-model="inputText" />
|