Woocommerce – Re-render Vue component with dynamic HTML from AJAX call
I have a Vue component 'FullCart' with a default slot like so: <template> <div> <slot></slot> </div> </template> This is only used to wrap the cart of a Woocommerce site. <full-cart :key="componentKey"> <form> <!-- woocommerce cart --> </form> </full-cart> After updating…