photoprism/frontend/src/dialog/dialogs.js
Michael Mayer 2c95d73520 Albums: Add photos by UUID #15
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
2019-12-04 15:14:04 +01:00

14 lines
445 B
JavaScript

import PPhotoDeleteDialog from "./p-photo-delete-dialog.vue";
import PPhotoAlbumDialog from "./p-photo-album-dialog.vue";
import PPhotoEditDialog from "./p-photo-edit-dialog.vue";
const dialogs = {};
dialogs.install = (Vue) => {
Vue.component("p-photo-delete-dialog", PPhotoDeleteDialog);
Vue.component("p-photo-album-dialog", PPhotoAlbumDialog);
Vue.component("p-photo-edit-dialog", PPhotoEditDialog);
};
export default dialogs;