How to add an icon to an error prompt using v-verify-plugin in vue

Mar.04,2021

you haven't used this plugin, but you can add it directly with css

.

for example, the class of error prompt is .err-msg

.err-msg::before{
  content: '';
  background: red;
  border-radius: 50%;
}
Menu