Merge branch 'master' of https://github.com/primefaces/primevue
commit
79160a1db8
|
@ -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>
|
||||
`
|
||||
|
|
|
@ -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.
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue