Files
DiceCloud/app/imports/client/ui/library/LibraryBrowserDialog.vue
2023-06-12 22:16:20 +02:00

36 lines
709 B
Vue

<template lang="html">
<dialog-base>
<template slot="toolbar">
<v-toolbar-title>
Community Libraries
</v-toolbar-title>
</template>
<library-browser slot="unwrapped-content" />
<template slot="actions">
<v-spacer />
<v-btn
text
@click="$store.dispatch('popDialogStack')"
>
Done
</v-btn>
</template>
</dialog-base>
</template>
<script lang="js">
import DialogBase from '/imports/client/ui/dialogStack/DialogBase.vue';
import LibraryBrowser from '/imports/client/ui/pages/LibraryBrowser.vue';
export default {
components: {
DialogBase,
LibraryBrowser,
},
};
</script>
<style lang="css" scoped>
</style>