Search Improvements

This commit is contained in:
Shiny Nematoda 2022-05-03 19:17:48 +05:30
parent 51c56abe16
commit 19fc65e6c0
19 changed files with 545 additions and 404 deletions

View file

@ -8,13 +8,18 @@ defineProps({
type: String,
default: '',
},
artistUrl: {
type: String,
default: '',
}
});
defineEmits(['get-artist'])
</script>
<template>
<div v-if="title && artist" class="wrap">
<h1>{{ title }}</h1>
<h3>{{ artist }}</h3>
<h3><a :href="artistUrl" @click.prevent="$emit('get-artist', artistUrl)">{{ artist }}</a></h3>
</div>
</template>