mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 20:24:43 +08:00
23872f519b
* Implement step element sorting modal [SCI-6849] * Implement step reordering modal [SCI-6850] * Refactor reorderable items a bit [SCI-6850]
12 lines
248 B
Vue
12 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>
|