mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-11 01:42: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
|
@ -560,11 +560,8 @@ export default {
|
|||
};
|
||||
},
|
||||
watch: {
|
||||
id: {
|
||||
immediate: true,
|
||||
handler: function (newValue) {
|
||||
this.d_id = newValue || UniqueComponentId();
|
||||
}
|
||||
id: function (newValue) {
|
||||
this.d_id = newValue || UniqueComponentId();
|
||||
},
|
||||
modelValue(newValue) {
|
||||
this.updateCurrentMetaData();
|
||||
|
@ -614,6 +611,7 @@ export default {
|
|||
this.updateCurrentMetaData();
|
||||
},
|
||||
mounted() {
|
||||
this.d_id = this.d_id || UniqueComponentId();
|
||||
this.createResponsiveStyle();
|
||||
this.bindMatchMediaListener();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue