logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe

confirm.js (184B)


      1 const Confirm = {
      2   props: ['disabled'],
      3   data: () => ({}),
      4   methods: {
      5     confirm () { this.$emit('confirm') },
      6     cancel () { this.$emit('cancel') }
      7   }
      8 }
      9 export default Confirm