[Vuejs]-How to pass a string with double quoutes as property in VueJS?

0👍

Escape the quotes with a \

<editor init-text="String \"Test\""></editor>

Or mix single ' and double " quotes

<editor init-text='String "Test"'></editor>

Leave a comment