<template>
</template>
<script>
export default {
name: "MessageComponent"
};
var vm = new Vue({
sockets:{
connect: function(){
this.$vs.notify({title:'Соединение',text:'Вы успешно подключились к чату!',color:'success',position:'bottom-center'});
}
},
});
</script>
<style scoped>
</style>
Failed to load resource: net::ERR_CONNECTION_REFUSED
export default {
mounted() {
var vm = new Vue({
sockets:{
connect: function(){
this.$vs.notify({title:'Соединение',text:'Вы успешно подключились к чату!',color:'success',position:'bottom-center'});
},
connect_error: function(){
this.$vs.notify({title:'Соединение',text:'Ошибка сервера, не могу подключить к чату!',color:'danger',position:'bottom-center'});
}
}
});
}
}
watch : {
status : (vol) => {
if(vol == 'ERR_CONNECTION_REFUSED'){
this.do(something)
}
}
}