Skip to content

Commit

Permalink
refactor(no-element): towards getting rid of no-element component
Browse files Browse the repository at this point in the history
  • Loading branch information
joseacabaneros committed Jul 23, 2024
1 parent bc66d07 commit 9f9b315
Show file tree
Hide file tree
Showing 11 changed files with 269 additions and 512 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,12 @@
</template>
</Facets>
<h2>SelectedFilters</h2>
<SelectedFilters :facetsIds="facetsIds" alwaysVisible>
<template #default="{ selectedFilters }">
Selected filters: {{ selectedFilters.length }}
</template>
<SelectedFilters
class="it-is-a-inheritance-class"
:facetsIds="facetsIds"
#default="{ selectedFilters }"
>
<span>Selected filters: {{ selectedFilters.length }}</span>
</SelectedFilters>
<h2>SelectedFiltersList</h2>
<SelectedFiltersList :facetsIds="facetsIds" alwaysVisible>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<script lang="ts">
import { defineComponent } from 'vue';
import { NoElement } from '../no-element';
import { use$x } from '../../composables/index';
import { use$x } from '../../composables/use-$x';
/**
* Component that allows to close a modal by emitting
Expand Down
Loading

0 comments on commit 9f9b315

Please sign in to comment.