Compare commits
No commits in common. "3448b076092678c52b2f868ecc5b96d1ab9dd82b" and "c2804b4c9124f57d6933c7fb1b255217b8be082a" have entirely different histories.
3448b07609
...
c2804b4c91
1 changed files with 0 additions and 6 deletions
|
@ -31,9 +31,6 @@ function lojas(jogos: Jogo[]): string[] {
|
|||
<template #filter="{ filterModel, filterCallback }">
|
||||
<InputText type="text" v-model="filterModel.value" @input="filterCallback()" />
|
||||
</template>
|
||||
<template #body="{ data }">
|
||||
{{ data.nome }} <span v-if="data.ano">({{ data.ano }})</span>
|
||||
</template>
|
||||
</Column>
|
||||
|
||||
<Column field="estado" sortable header="Estado" :show-filter-menu="false">
|
||||
|
@ -59,9 +56,6 @@ function lojas(jogos: Jogo[]): string[] {
|
|||
<Column field="preco" sortable header="Preço">
|
||||
<template #filter="{ filterModel, filterCallback }">
|
||||
<Select v-model="filterModel.value" @change="filterCallback()" :options="precos" :show-clear="true">
|
||||
<template #value="{ value }">
|
||||
<ComponenteDePreco v-if="value" :preco="value" />
|
||||
</template>
|
||||
<template #option="slotProps">
|
||||
<ComponenteDePreco :preco="slotProps.option" />
|
||||
</template>
|
||||
|
|
Loading…
Reference in a new issue