歌手链接

This commit is contained in:
zilong
2021-10-18 17:05:21 +08:00
parent 580fe8dbeb
commit 3f9197d37c
6 changed files with 67 additions and 39 deletions

View File

@@ -0,0 +1,20 @@
<script setup>
</script>
<template>
<template v-for="(ar, idx) of artists" key="idx">
<span
@click="$router.push('/songer/' + ar.id)"
style="margin-right: 4px; cursor: pointer"
>{{ ar.name }}</span
>
</template>
</template>
<script>
export default {
props: ["artists"],
};
</script>
<style></style>