Skip to content

wt-filters-panel-wrapper.vue

Specs

Props

Name Required Types Default Description Example Deprecated
tableActionIcons Array [ 'filter-reset', 'settings',] Array of table action icons to display
isOpened boolean false Controls filters panel expansion state

Events

Name Params Description
reset

Slots

Name Scope Description
default

Example Filters Panel Wrapper

Code
vue
<script setup></script>

<template>
  <wt-filters-panel-wrapper>
    <wt-single-select label="filter" />
    <wt-single-select label="filter" />
    <wt-single-select label="filter" />
  </wt-filters-panel-wrapper>
</template>

<style scoped lang="scss"></style>