Developmint/vue-link

Expose `external` as a slot-scope

mrleblanc101 opened this issue · 0 comments

Expose external as a slot scope so we can conditonnaly display an icon depending on if the link is an external link or not.

<vue-link :to="data.link" slot-scope="{ external }">
    Some text <img v-if="external" src="external.svg">
</vue-link>