Skip to content

Instantly share code, notes, and snippets.

@kevupton
Last active May 17, 2020 04:22
Show Gist options
  • Save kevupton/42415afa1378f098db74cd5dd4c35544 to your computer and use it in GitHub Desktop.
Save kevupton/42415afa1378f098db74cd5dd4c35544 to your computer and use it in GitHub Desktop.
<template>
<div class="hello">Hello {{who}} World</div>
</template>
<script>
module.exports = {
props: {
who: String,
},
};
</script>
<style>
.hello {
background-color: #ffe;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment