Hi @rstoenescu ,
Sorry, i didn’t sent my entire html and thanks, i’ve get multiple lists instead of multiple items. But, even changed that, i still can’t scroll my results on large screens. I can scroll successfully when using mobile-view on Chrome or Quasar Play. Like i’ve said, on 0.9 this such of thing didn’t happen.
<template>
<div class=“layout-padding”>
<h5>Instituições</h5>
<button class="primary big circular absolute-bottom-right push" @click="newInst()" style="right: 15px; bottom: 15px; z-index:2">
<i>add</i>
</button>
<div class="list">
<div class="item multiple-lines" v-for="Inst in Instituicoes">
<div class="item-content has-secondary">
<div>{{Inst.nome}}</div>
<div class="item-label item-smaller">{{Inst.email}}</div>
</div>
<div class="item-secondary">
<i slot="target">more_vert
<q-popover ref="popover">
<div class="list">
<div class="item item-link" @click="editInst(Inst.id)">
<div class="item-content">Editar</div>
</div>
</div>
</q-popover>
</i>
</div>
</div>
</div>
</div>
</template>
Any ideas?
Thank you.