mirror of
https://github.com/koel/koel
synced 2024-12-04 09:49:23 +00:00
22 lines
617 B
Vue
22 lines
617 B
Vue
<template>
|
|
<section>
|
|
<ScreenHeader layout="collapsed">Not Found</ScreenHeader>
|
|
|
|
<div class="main-scroll-wrap">
|
|
<ScreenEmptyState>
|
|
<template v-slot:icon>
|
|
<icon :icon="faKiwiBird" :mask="faMap" transform="shrink-12"/>
|
|
</template>
|
|
|
|
The requested content cannot be found.
|
|
</ScreenEmptyState>
|
|
</div>
|
|
</section>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { faKiwiBird, faMap } from '@fortawesome/free-solid-svg-icons'
|
|
import ScreenHeader from '@/components/ui/ScreenHeader.vue'
|
|
import ScreenEmptyState from '@/components/ui/ScreenEmptyState.vue'
|
|
//
|
|
</script>
|