How to put an element inside the header of antdv a-drawer. Vue 2.7 Composition API
<a-drawer
title="TRANSCRIPT DRAWER"
placement="bottom"
:closable="true"
:visible="userTranscriptsVisible"
:get-container="false"
@close="closeDrawer"
:mask="false"
wrapClassName="userTranscriptsPanel"
:height="transcriptDrawerHeight"
>
<div slot="title">
<!-- Your content here -->
Swag
</div>
</a-drawer>
I want to put the div with swag. Inside the header portion of this. so its inline with the title "TRANSCRIPT DRAWER".
I've tried:
<template slot="title">
<div>
<!-- Your content here -->
Swag
</div>
</template>
and
<div slot="title">
<!-- Your content here -->
Swag
</div>