Last active
February 3, 2018 15:49
-
-
Save Siemko/b52e056638e0710bd6ccaffc8e405165 to your computer and use it in GitHub Desktop.
Sample Vue single file component
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> | |
<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