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