Add dialog component to component.js

This commit is contained in:
Theresa Gresch 2019-06-27 10:15:22 +02:00
parent 7981bf6d82
commit b19c73e315

View file

@ -9,6 +9,7 @@ import PPhotoViewer from "./p-photo-viewer.vue";
import PPhotoSearch from "./p-photo-search.vue";
import PPhotoClipboard from "./p-photo-clipboard.vue";
import PScrollTop from "./p-scroll-top.vue";
import PDialog from "./p-dialog.vue";
// import PPullRefresh from "./p-pull-refresh.vue";
const components = {};
@ -25,6 +26,7 @@ components.install = (Vue) => {
Vue.component("p-photo-search", PPhotoSearch);
Vue.component("p-photo-clipboard", PPhotoClipboard);
Vue.component("p-scroll-top", PScrollTop);
Vue.component("p-dialog", PDialog);
// Vue.component("p-pull-refresh", PPullRefresh);
};