mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
Merge branch 'master' into v4
This commit is contained in:
commit
7681760b77
78 changed files with 6215 additions and 204 deletions
|
@ -196,8 +196,11 @@ export default {
|
|||
};
|
||||
},
|
||||
watch: {
|
||||
'$attrs.id': function (newValue) {
|
||||
this.id = newValue || UniqueComponentId();
|
||||
'$attrs.id': {
|
||||
immediate: true,
|
||||
handler: function (newValue) {
|
||||
this.id = newValue || UniqueComponentId();
|
||||
}
|
||||
},
|
||||
selection(newValue) {
|
||||
this.d_selection = newValue;
|
||||
|
@ -219,8 +222,6 @@ export default {
|
|||
this.destroyMedia();
|
||||
},
|
||||
mounted() {
|
||||
this.id = this.id || UniqueComponentId();
|
||||
|
||||
if (this.responsive) {
|
||||
this.createStyle();
|
||||
this.initMedia();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue