mirror of
https://github.com/simon987/sist2.git
synced 2025-04-18 01:36:42 +00:00
24 lines
582 B
Vue
24 lines
582 B
Vue
<template>
|
|
<b-list-group-item action :to="`/searchBackend/${backend.name}`">
|
|
|
|
<div class="d-flex w-100 justify-content-between">
|
|
<h5 class="mb-1">
|
|
{{ backend.name }}
|
|
</h5>
|
|
|
|
<div>
|
|
<b-badge v-if="backend.backend_type === 'sqlite'" variant="info">SQLite</b-badge>
|
|
<b-badge v-else variant="info">Elasticsearch</b-badge>
|
|
</div>
|
|
</div>
|
|
|
|
</b-list-group-item>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
export default {
|
|
name: "SearchBackendListItem",
|
|
props: ["backend"],
|
|
}
|
|
</script> |