[Vuejs]-Uncaught TypeError: _ctx.showEditModal is not a function in Vue 3 + Laravel Poject

1👍

You’re showEditModal is not inside the methods object:

export default {
    methods: {
        ...
    },
    showEditModal() { ... }
    created() {
        ...
    }
}

The same applies to showEditTag and showDeletingModal. You need to move those functions so they are part of the methods object, otherwise Vue won’t treat them as methods.

Leave a comment