Skip to content

Instantly share code, notes, and snippets.

@Siemko
Last active February 3, 2018 15:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Siemko/b52e056638e0710bd6ccaffc8e405165 to your computer and use it in GitHub Desktop.
Save Siemko/b52e056638e0710bd6ccaffc8e405165 to your computer and use it in GitHub Desktop.
Sample Vue single file component
<template>
<h1>{{ greeting }} world!</h1>
</template>
<script>
export default {
data () {
return {
greeting: 'Hello'
}
}
}
</script>
<style scoped>
h1 {
color: #111111;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment