36 lines
709 B
Vue
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>
|