add lastfm and musicbrainz links to artist page

This commit is contained in:
Thomas Amland
2020-08-02 14:22:38 +02:00
parent b074311122
commit 49a9499d1b
4 changed files with 19 additions and 7 deletions
+8
View File
@@ -0,0 +1,8 @@
<template functional>
<a :href="props.href"
target="_blank"
rel="noopener noreferrer"
:class="[data.class, data.staticClass]">
<slot/>
</a>
</template>
+2
View File
@@ -1,4 +1,5 @@
import Vue from 'vue';
import ExternalLink from "./ExternalLink.vue";
import Icon from "./Icon.vue";
import OverflowMenu from "./OverflowMenu.vue";
import Spinner from "./Spinner.vue";
@@ -6,6 +7,7 @@ import Tiles from "./Tiles.vue";
import Tile from "./Tile.vue";
const components = {
ExternalLink,
Icon,
OverflowMenu,
Spinner,