Skip to content

Instantly share code, notes, and snippets.

@coryetzkorn
Forked from chrisvfritz/Hello.vue
Created February 20, 2019 19:27
Show Gist options
  • Save coryetzkorn/d6b24629274c0bead0505aaa2bc9f1fa to your computer and use it in GitHub Desktop.
Save coryetzkorn/d6b24629274c0bead0505aaa2bc9f1fa to your computer and use it in GitHub Desktop.
<template>
<p>{{ greeting }} World!</p>
</template>
<script>
module.exports = {
data: function () {
return {
greeting: 'Hello'
}
}
}
</script>
<style scoped>
p {
font-size: 2em;
text-align: center;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment