#

Buefy version: [0.5.0]
Vuejs version: [2.1.10]
OS/Browser:Chrom Ubuntu Linux
<b-field label="Email"
type="is-danger"
message="This email is invalid">
<b-input type="email"
value="john@"
maxlength="30">
</b-input>
</b-field>
When I type a wrong email id it alerts the danger type but the small icon on the right-hand side of the input field is not shown instead it shows a message on that corner saying "ERROR" or for other types, it says like "WARNING" or "INFO" etc.
Thanks in advance.
@OGhawsi Did you import font-awesome or material icons? Is it working?
change #Vue.use(Buefy); to look like this
Vue.use(Buefy, {
defaultIconPack: 'fa'
})
Thanks so much @thamibn it worked.
Most helpful comment
change #Vue.use(Buefy); to look like this
Vue.use(Buefy, {
defaultIconPack: 'fa'
})