Vuejs: Dynamic Recursive components
问题 I am trying to make a custom component that call itself. i keep getting an error Unknown custom element: <TestRec> - did you register the component correctly? For recursive components, make sure to provide the "name" option. I have included a name option as you can see below but this doesn't solve the problem. Any idea what it could be? <template> <div> <h4>I am a component that can call itself below</h4> <v-select :items="['TestRec', 'normal']" v-model="comp"></v-select> <hr /> <component