vue has the following route nesting:
/ > app.vue > a.vue > b.vue
app.vue is the ingress, an is a level 2 route, and b is a child of a
when accessing the b route, the request written in an and some column hook events will be called repeatedly. What should I do?
for example, if there is a data request in created in app.vue, the hook in app.vue will be called repeatedly when accessing an or b.
- is my idea of placing it wrong? Or is that what vue itself can only do?
- is there a solution?