22 lines
420 B
Vue
22 lines
420 B
Vue
<script setup>
|
|
const props = defineProps({
|
|
item: {
|
|
type: null,
|
|
required: true,
|
|
},
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<li class="nav-section-title">
|
|
<div class="title-wrapper">
|
|
<!-- eslint-disable vue/no-v-text-v-html-on-component -->
|
|
<span
|
|
class="title-text"
|
|
v-text="item.heading"
|
|
/>
|
|
<!-- eslint-enable vue/no-v-text-v-html-on-component -->
|
|
</div>
|
|
</li>
|
|
</template>
|