import axios from '../../../../../packs/custom_axios.js'; export default { data() { return { movingAttachment: false }; }, methods: { showMoveModal(event) { event.stopPropagation(); this.movingAttachment= true; }, closeMoveModal() { this.movingAttachment = false; }, moveAttachment(target_id) { axios.post(this.attachment.attributes.urls.move, { target_id: target_id }). then(() => { this.movingAttachment = false; this.$emit('attachment:moved', this.attachment.id, target_id); }); } } };