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.
Source:stackexchange.com