I have a parser method inside my component, when that method is working I want to create components (or even just elements) from values that is computed. Is it possible to c
Is it possible to creating component or html elements when method is working?
Its not possible in JavaScript using synchronous code. JavaScript is single-threaded and even browser rendering is blocked when your synchronous/long running code is executing, not to mention Vue logic which re-renders your template and updates the DOM (really recommend this talk - explains the problem beautifully)
You have basically two options:
setTimeout(nextBatch, 0)
to schedule "next chunk" processing. See this SO question for more details...