Files
DiceCloud/app/imports/ui/pages/SingleLibraryPage.vue
2020-05-12 12:27:24 +02:00

17 lines
266 B
Vue

<template lang="html">
<div>
<v-card class="ma-4">
<single-library />
</v-card>
</div>
</template>
<script>
import SingleLibrary from '/imports/ui/library/SingleLibrary.vue';
export default {
components: {
SingleLibrary,
},
};
</script>