-
-
Save humb1t/2c914b15f2300fb29f00c09fa8f1dd66 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> | |
<p>{{ greeting }} World!</p> | |
</template> | |
<script> | |
export default { | |
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
Initial fork to change
module.exports =
into 'export default`.Motivation: provide up to date version of https://vuejs.org/v2/guide/single-file-components.html