Skip to content

Instantly share code, notes, and snippets.

@yehonatan56
Created January 29, 2025 16:40
Show Gist options
  • Select an option

  • Save yehonatan56/a45975f536efe4490142b188f117b7dd to your computer and use it in GitHub Desktop.

Select an option

Save yehonatan56/a45975f536efe4490142b188f117b7dd to your computer and use it in GitHub Desktop.
<template>
<div>
<h1>{{message.sender}}:{{message.content}}</h1>
</div>
</template>
<script>
export default {
name: "Standart",
props: {
message: {
type: Object,
required: true
}
},
};
<style scoped>
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment