<1 min read
ExtraParams
ExtraParams
It emits a ExtraParamsXEvents.ExtraParamsProvided with the values received as a prop.
Props
| Name | Description | Type | Default |
|---|---|---|---|
values | Dictionary | |
Events
Examples
See how the event is triggered when the component is rendered.
<template>
<ExtraParams :values="values" />
</template>
<script setup>
import { ExtraParams } from '@empathyco/x-components/extra-params'
import { reactive } from 'vue'
const values = reactive({
warehouse: 1234,
})
</script>