[Vuejs]-Vue Component text only partially passes to slot, the rest appears in outer div

0๐Ÿ‘

I neglected to wrap the data passed to the value prop in quotes. The display text component should be filled out like:

<display-text
    field="Description"
    value="{{ $recipe->description }}"
></display-text>

Leave a comment