This repository was archived by the owner on Jan 18, 2022. It is now read-only.

Description
I am building realtime chat using laravel and vueJs
on the input field I am using v-model but it is not returning anything:
Here is the code:
Send
<script>
export default {
data() {
return {
messageText: 'Hamza'
}
console.log('msg');
},
methods: {
sendMessage() {
console.log('Message Sent!')
}
}
}
</script>
<style>
.chat-composer{
display:flex;
}
.chat-composer input {
flex:1 auto;
}
.chat-composer button {
border-radius: 0
}
</style>