mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
17 lines
304 B
Vue
17 lines
304 B
Vue
<template>
|
|
<ds-flex-item>
|
|
<ds-heading soft size="h5">
|
|
{{ $t(`search.heading.${resourceType}`) }}
|
|
</ds-heading>
|
|
</ds-flex-item>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
name: 'SearchHeading',
|
|
props: {
|
|
resourceType: { type: String, required: true },
|
|
},
|
|
}
|
|
</script>
|
|
<style></style>
|