Hello, my end goal is to use Teleport for buttons to top right corner of the group.
To do that I've tried to reuse logic from forum:
<Teleport v-if="mounted" to="#nrdb-ui-group-350fe6c36c2bd724">
<div class="teleported-button-container">
<!-- Login Button -->
<v-btn color="primary" @click="openDialog">
<v-icon>mdi-information-variant</v-icon>
</v-btn>
</div>
</Teleport>
.teleported-button-container {
position: relative;
right: -35rem;
top: -18rem;
}
but it doesn't behave the same way as
<Teleport v-if="mounted" to="#app-bar-actions">
- If I don't add any style it appears at the bottom left corner instead of right
- Because I use coordinates, my button doesn't move according when window is resized.
How can I anchor my button to the top right corner?
How can I assign readable id to the ui_group?