koel/resources/assets/js/components/profile-preferences/Integrations.vue

16 lines
385 B
Vue
Raw Normal View History

2024-04-03 14:48:52 +00:00
<template>
2024-04-04 22:20:42 +00:00
<div class="space-y-5">
2024-04-03 14:48:52 +00:00
<article>
<SpotifyIntegration />
</article>
<article>
<LastfmIntegration />
</article>
</div>
</template>
2024-04-23 21:01:27 +00:00
<script lang="ts" setup>
2024-04-03 14:48:52 +00:00
import LastfmIntegration from '@/components/profile-preferences/LastfmIntegration.vue'
import SpotifyIntegration from '@/components/profile-preferences/SpotifyIntegration.vue'
</script>