Last active
December 10, 2022 13:38
-
-
Save homayounKheiri/58003b82c676d9a92f1337dade5016e7 to your computer and use it in GitHub Desktop.
This file contains 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> | |
<MyComponent :id="myId" :title="myTitle"/> | |
</template> | |
<script> | |
export default { | |
data() { | |
return { | |
myId: 1, | |
myTitle: 'title', | |
} | |
}, | |
} | |
</script> | |
<style> | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment