mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-16 06:06:56 +08:00
14 lines
316 B
Vue
14 lines
316 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.protocol_templates') }}
|
|
</h2>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'ProtocolsComponent'
|
|
};
|
|
</script>
|