change card flow
This commit is contained in:
parent
c10429a08f
commit
d9b598d078
2 changed files with 22 additions and 18 deletions
|
|
@ -29,16 +29,20 @@
|
|||
</div>
|
||||
</div>
|
||||
<div class="col-lg-9 col-xl-8">
|
||||
<div class="card-columns">
|
||||
<div
|
||||
class="card-list-item card bg-dark text-light"
|
||||
v-for="item in internalItems"
|
||||
:key="item[keyName]"
|
||||
@click="$emit('itemActivated', item)"
|
||||
>
|
||||
<slot v-bind:item="item"/>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div
|
||||
class="mb-4 col-lg-4 col-xl-3"
|
||||
v-for="item in internalItems"
|
||||
:key="item[keyName]"
|
||||
>
|
||||
<div
|
||||
class="card-list-item card bg-dark text-light"
|
||||
@click="$emit('itemActivated', item)"
|
||||
>
|
||||
<slot v-bind:item="item"/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue