alex-oleshkevich / vue-introjs

intro.js bindings for Vue.
MIT License
301 stars 53 forks source link

v-intro-if doesn't work if combined with v-intro-autostart #1

Closed gabriel4649 closed 7 years ago

gabriel4649 commented 7 years ago
        <book-card v-intro-autostart="true"
                   v-intro-if="index == 0"
                   v-intro="'The content of tooltip'"
                   v-on:remove="removeBook"
                   :book="book"></book-card>

This produces two steps, rather than one as expected.

gabriel4649 commented 7 years ago

Never mind. What happens is that v-intro-if must go after v-intro for it to work.