yuche / vue-strap

Bootstrap components built with Vue.js

Home Page:http://yuche.github.io/vue-strap/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

invalid expression: {{{content}}}

ivancli opened this issue · 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>

`

And you do not accidentally use twig ?

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