0👍
You have a couple of options:
-
Make the XML object a reactive string. Then use a computed property to parse the string and create your DOM. Then use the computed DOM to render your component.
-
Use a
shallowRef
for your DOM. Then calltriggerRef
manually when you mutate your DOM.
- [Vuejs]-Why the delete button is deleting all af the items instead a single one?
- [Vuejs]-How to read parent attributes in Vue3 typescript
Source:stackexchange.com