Skip to content

wt-selection-popup.vue

Specs

Props

Name Required Types Default Description Example Deprecated
title string - Popup title
selected object - Selected value. The scheme repeats attribute option from options
options array [] All displayed values. Should have following schema: { value: '', title: '', description: '', icon: ''}

Events

Name Params Description
change
add
close

Slots

Name Scope Description
option
after-section

Example Selection Popup

Code
vue
<template>
  <div>
    <wt-button
      @click="isShownPopup = true"
    >
      Open popup
    </wt-button>
    <wt-selection-popup
      :options="options"
      :selected="selected"
      :shown="isShownPopup"
      title="Add group"
      v-bind="$attrs"
      @add="create"
      @change="change"
      @close="close"
    />
  </div>
</template>

<script setup>
import WtSelectionPopup from '__lib__/components/on-demand/wt-selection-popup/wt-selection-popup.vue';
import { computed, onMounted, ref } from 'vue';

const selected = ref(null);
const isShownPopup = ref(false);

const options = computed(() => {
  return [
    { value: 'static', title: 'static' },
    { value: 'dynamic', title: 'dynamic' },
  ];
});

function create() {
  console.log('create', selected.value);
}

function change(option) {
  selected.value = option;
}

function close() {
  isShownPopup.value = false;
}

onMounted(() => {
  selected.value = options.value[0];
});
</script>