[Vuejs]-Form Submit button not working while implementing if statement logic

1👍

Looks like you just didn’t register your FinalStep component:

[Vue warn]: Failed to resolve component: FinalStep
If this is a native custom element, make sure to exclude it from component resolution via compilerOptions.isCustomElement.
at

When I add it in App.vue, it seems to work:

import Form from "./components/Form.vue";
import FinalStep from "./components/FinalStep.vue";
...
export default {
  name: "App",
  ...
  components: {
    Form,
    ProgressBar,
    FinalStep
  },

Leave a comment