After install Vuesax via npm install version 3.1.45, we have this error message on console:
_"Unknown custom element:
When open dialog:
openAlert(color){
this.colorAlert = color || this.getColorRandom()
this.$vs.dialog({
color:this.colorAlert,
title: Dialog - ${this.colorAlert},
text: 'Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.',
accept:this.acceptAlert
})
},
acceptAlert(){
this.$vs.notify({
color:this.colorAlert,
title:'Accept Selected',
text:'Lorem ipsum dolor sit amet, consectetur'
})
},
getColorRandom(){
function getRandomInt(min, max) {
return Math.floor(Math.random() * (max - min)) + min;
}
return rgb(${getRandomInt(0,255)},${getRandomInt(0,255)},${getRandomInt(0,255)})
}
For this.$vs.dialog doesn't work:

But if change for this.$vs.confirm or this.$vs.alert buttons works fine


on this.$vs.dialog buttons are broken.
Thanks!!!
You could pass me a codepen or a repo to duplicate the error and fix it thank you very much
@jupox working fine here, you have problem yet?
example:
https://codepen.io/anon/pen/MqvLYR
Any way to fix this? I'm having the same problem
Most helpful comment
@jupox working fine here, you have problem yet?
example:
https://codepen.io/anon/pen/MqvLYR