photoprism/frontend/src/dialog/dialogs.js

14 lines
445 B
JavaScript
Raw Normal View History

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;