pull/5969/head
Cagatay Civici 2024-06-26 13:49:08 +03:00
commit 79160a1db8
2 changed files with 6 additions and 2 deletions

View File

@ -31,10 +31,10 @@ const showProducts = () => {
basic: `
<script setup>
/* ProductListDemo.vue */
const emit = defineEmits(['onCancel', 'onSave'])
const emit = defineEmits(['cancel', 'save'])
function buttonClick() {
emit('onCancel', {user: 'primetime'});
emit('cancel', {user: 'primetime'});
}
<\/script>
`

View File

@ -148,6 +148,10 @@ export interface MultiSelectPassThroughOptions {
* Used to pass attributes to the dropdown's DOM element.
*/
dropdown?: MultiSelectPassThroughOptionType;
/**
* Used to pass attributes to the loading icon's DOM element.
*/
loadingIcon?: MultiSelectPassThroughOptionType;
/**
* Used to pass attributes to the dropdown icon's DOM element.
*/