Created
January 29, 2025 16:40
-
-
Save yehonatan56/a45975f536efe4490142b188f117b7dd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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