mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-17 06:35:14 +08:00
15 lines
320 B
Vue
15 lines
320 B
Vue
|
<template>
|
||
|
<div class="bg-white rounded p-4 mb-4">
|
||
|
<h2 class="flex items-center gap-2 mt-0 mb-4">
|
||
|
<i class="sn-icon sn-icon-protocols-templates"></i>
|
||
|
{{ i18n.t('search.index.task_protocols') }}
|
||
|
</h2>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
name: 'MyModuleProtocolsComponent'
|
||
|
};
|
||
|
</script>
|