Hi, I'm learning how to use Vue.js and so far I'm learning how to create components.
But I'm having a problem, I'm trying to render a component after loading the page. I have a jQuery code that I want to use, but I do not know how to do it.
$('#test123').html('<inventory message="Click on the Item to activate it."></inventory>');
But this component is not rendered and nothing happens to it, I saw some things on the internet, but the solutions I found rendered one component only, but I need to render several, because the json I'm going to receive, the javascript will do foreach and put in the div.
Thanks for your attention.