Composable 1: (useTree.ts)
import useForm from '@/composables/useForm'
const { test } = useForm()
Composable 2: (useForm.ts)
import use Tree from '@/composables/useTree'
const { test } = useTree()
This causes the following error:
Uncaught (in promise) RangeError: Maximum call stack size exceeded
What is causing this error? I don't understand.