scinote-web/app/javascript/vue/protocol/modals.vue
artoscinote 23872f519b
Implement step element sorting modal [SCI-6849] (#4124)
* Implement step element sorting modal [SCI-6849]

* Implement step reordering modal [SCI-6850]

* Refactor reorderable items a bit [SCI-6850]
2022-05-30 13:45:51 +02:00

13 lines
248 B
Vue

<template>
<div class="protocol-modals">
</div>
</template>
<script>
import deleteElementModal from 'vue/protocol/modals/delete_element.vue'
export default {
name: 'ProtocolModals',
components: { deleteElementModal }
}
</script>