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