Created
February 8, 2019 04:44
-
-
Save dmix/7bc336d7ceaf486f329d8e8270640088 to your computer and use it in GitHub Desktop.
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> | |
<p>{{ hello }}</p> | |
</template> | |
<script> | |
export default { | |
data() { | |
return { | |
hello: 'Hello World!' | |
} | |
} | |
} | |
</script> | |
<style scoped> | |
p { | |
color: blue; | |
} | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment