vue-strap icon indicating copy to clipboard operation
vue-strap copied to clipboard

invalid expression: {{{content}}}

Open ivancli opened this issue 8 years ago • 2 comments

Got the following error message when I was trying with popover. `


<span v-el:trigger>
    <slot></slot>
    <div v-el:popover v-if="show"
      :class="['popover',placement]"
      :transition="effect"
    >
      <div class="arrow"></div>
      <h3 class="popover-title" v-if="title">
        <slot name="title">{{title}}</slot>
      </h3>
      <div class="popover-content">
        <slot name="content">{{{content}}}</slot>
      </div>
    </div>
  </span>

- invalid expression: {{{content}}}

found in

---> <Popover>

`

ivancli avatar Jun 08 '17 07:06 ivancli

And you do not accidentally use twig ?

WarGot-by avatar Jul 27 '17 12:07 WarGot-by

Sorry, didn't realise it's HTMLed. Comment has been updated.

ivancli avatar Aug 13 '17 21:08 ivancli