modal(
name='pricelist-modal'
transition='nice-modal-fade'
width='400px'
height='600px'
:classes="['v--modal', 'pricelist-modal']"
@before-close='beforeClose'
)
.pricelist-content
h1 Lista de precios
.pricelist-items-wrapper
ul.pricelist-items
li.pricelist-item(
v-for='item in items'
:key='item.id'
@click.prevent='onApply(item)'
)
h3 {{ computePrice(item) }}
h1 {{ item.pricelistName }}
.pricelist-options
button.pricelist-option(
@click.prevent='onCancel'
) Cancelar