mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-10 09:22:34 +00:00
Fixed #5593 - Hydration defects
This commit is contained in:
parent
8365a30f5b
commit
6615f31d8a
30 changed files with 120 additions and 151 deletions
|
@ -68,13 +68,13 @@ export default {
|
|||
};
|
||||
},
|
||||
watch: {
|
||||
'$attrs.name': {
|
||||
immediate: true,
|
||||
handler: function (newValue) {
|
||||
this.name = newValue || UniqueComponentId();
|
||||
}
|
||||
'$attrs.name': function (newValue) {
|
||||
this.name = newValue || UniqueComponentId();
|
||||
}
|
||||
},
|
||||
mounted() {
|
||||
this.name = this.name || UniqueComponentId();
|
||||
},
|
||||
methods: {
|
||||
getPTOptions(key, value) {
|
||||
return this.ptm(key, {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue