mirror of
https://github.com/koel/koel
synced 2024-11-24 21:23:06 +00:00
15 lines
385 B
Vue
15 lines
385 B
Vue
<template>
|
|
<div class="space-y-5">
|
|
<article>
|
|
<SpotifyIntegration />
|
|
</article>
|
|
<article>
|
|
<LastfmIntegration />
|
|
</article>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import LastfmIntegration from '@/components/profile-preferences/LastfmIntegration.vue'
|
|
import SpotifyIntegration from '@/components/profile-preferences/SpotifyIntegration.vue'
|
|
</script>
|