I have the problem that i want a lot of options i my rpg-choice but when there are to many i cant see them all and the button disappears.
<template>
<div class="background">
<rpg-window width="500px" height="500px" style="margin:auto;">
<p>choices</p>
<rpg-choice :choices="choices" ref="data">
</rpg-choice>
<button class="btn-success login" type="button">back</button>
</rpg-window>
</div>
</template>
<script>
export default {
name: 'choose',
data() {
return {
choices: [
{text:"q"},
{text:"w"},
{text:"e"},
{text:"a"},
{text:"s"},
{text:"d"},
{text:"r"},
{text:"t"},
{text:"z"},
{text:"u"},
{text:"i"},
{text:"o"},
{text:"p"},
{text:"ΓΌ"},
{text:"dng"},
],
}
},
}
</script>
Is it possible to scroll in a rpg-window and if it is possible how do you do it?