currently in my Vue project, there are only html and js files on the rendering page. The construction of the dom of the
page depends on the dom construction of the js code after the js is loaded. Is it necessary to extract the css separately in such a pattern?
css will block the parsing of js, so is it better to build CSSOM ahead of time, or is it better to wait for js to finally insert style code into the page?