logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe git clone https://anongit.hacktivis.me/git/pleroma-fe.git/

dialog_modal.js (313B)


  1. const DialogModal = {
  2. props: {
  3. darkOverlay: {
  4. default: true,
  5. type: Boolean
  6. },
  7. onCancel: {
  8. default: () => {},
  9. type: Function
  10. }
  11. },
  12. computed: {
  13. mobileCenter () {
  14. return this.$store.getters.mergedConfig.modalMobileCenter
  15. }
  16. }
  17. }
  18. export default DialogModal