Skip to content
Snippets Groups Projects
Commit 7ce41d31 authored by Julian's avatar Julian
Browse files

Create generic ListView component

parent c344c607
No related branches found
No related tags found
Loading
Pipeline #107539 failed
<template>
<detail-view no-avatar>
<template #title>
<slot name="title" />
</template>
<template #actions>
<slot name="actions" />
</template>
<slot name="filter" />
<slot />
</detail-view>
</template>
<script>
import DetailView from "./DetailView.vue";
export default {
name: "ListView",
components: {
DetailView,
},
}
</script>
<style scoped>
</style>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment