VTKLoader: Fix parsing of VTP data with multiple components. (#23684)
* Fix parsing of VTP data with multiple components
Fix parsing of VTP, currently failing when a data item contains multiple
components.
In that case, ele['#text'] is not the compressed data but
an array of 1 element (this data). This makes the parsing fail as Base64toByteArray expects a string.
Use the array's content for parsing.
* Update VTKLoader.js
* Update VTKLoader.js
* Update VTKLoader.js
* Update VTKLoader.js
Co-authored-by: Michael Herzog <[email protected]>
Co-authored-by: mrdoob <[email protected]>