[Vuejs]-Export 'HasError' (imported as 'HasError') was not found in 'vform' (possible exports: Errors, Form, default)

3👍

It looks like you are importing it from the wrong location.

You can see this here

import {
  Button,
  HasError,
  AlertError,
  AlertErrors,
  AlertSuccess
} from 'vform/src/components/bootstrap5'
// 'vform/src/components/bootstrap4'
// 'vform/src/components/tailwind'

Vue.component(Button.name, Button)
Vue.component(HasError.name, HasError)
Vue.component(AlertError.name, AlertError)
Vue.component(AlertErrors.name, AlertErrors)
Vue.component(AlertSuccess.name, AlertSuccess)
👤Muppet

Leave a comment