[Vuejs]-Vue.js maximum call stack size exceeded

6đź‘Ť

âś…

Remove <SearchInput> tag from the component itself

Your SearchInput component’s template should look like this.

SearchInput.vue

<template> 
    <input type="text">
</template>

You had the component itself being mounted inside itself, which resulted in a "maximum call stack error"

👤Fanoflix

Leave a comment