Skip to content

Instantly share code, notes, and snippets.

@dmix
Created February 8, 2019 04:44
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 dmix/7bc336d7ceaf486f329d8e8270640088 to your computer and use it in GitHub Desktop.
Save dmix/7bc336d7ceaf486f329d8e8270640088 to your computer and use it in GitHub Desktop.
<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