Merge branch 'master' of https://github.com/primefaces/primevue
commit
79160a1db8
|
@ -31,10 +31,10 @@ const showProducts = () => {
|
||||||
basic: `
|
basic: `
|
||||||
<script setup>
|
<script setup>
|
||||||
/* ProductListDemo.vue */
|
/* ProductListDemo.vue */
|
||||||
const emit = defineEmits(['onCancel', 'onSave'])
|
const emit = defineEmits(['cancel', 'save'])
|
||||||
|
|
||||||
function buttonClick() {
|
function buttonClick() {
|
||||||
emit('onCancel', {user: 'primetime'});
|
emit('cancel', {user: 'primetime'});
|
||||||
}
|
}
|
||||||
<\/script>
|
<\/script>
|
||||||
`
|
`
|
||||||
|
|
|
@ -148,6 +148,10 @@ export interface MultiSelectPassThroughOptions {
|
||||||
* Used to pass attributes to the dropdown's DOM element.
|
* Used to pass attributes to the dropdown's DOM element.
|
||||||
*/
|
*/
|
||||||
dropdown?: MultiSelectPassThroughOptionType;
|
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.
|
* Used to pass attributes to the dropdown icon's DOM element.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue