mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-10 01:12:37 +00:00
Components added. Build issues fixed
This commit is contained in:
parent
5b66ed1093
commit
18c3721848
344 changed files with 12446 additions and 8758 deletions
|
@ -1,7 +1,7 @@
|
|||
<template>
|
||||
<button :class="containerClass" type="button" v-ripple>
|
||||
<span class="p-paginator-icon pi pi-angle-left"></span>
|
||||
</button>
|
||||
<button v-ripple :class="containerClass" type="button">
|
||||
<span class="p-paginator-icon pi pi-angle-left"></span>
|
||||
</button>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
|
@ -11,13 +11,16 @@ export default {
|
|||
name: 'PrevPageLink',
|
||||
computed: {
|
||||
containerClass() {
|
||||
return ['p-paginator-prev p-paginator-element p-link', {
|
||||
'p-disabled': this.$attrs.disabled
|
||||
}];
|
||||
return [
|
||||
'p-paginator-prev p-paginator-element p-link',
|
||||
{
|
||||
'p-disabled': this.$attrs.disabled
|
||||
}
|
||||
];
|
||||
}
|
||||
},
|
||||
directives: {
|
||||
'ripple': Ripple
|
||||
ripple: Ripple
|
||||
}
|
||||
}
|
||||
};
|
||||
</script>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue