Skip to content

Instantly share code, notes, and snippets.

@hibuno
Created January 16, 2018 14:46
Show Gist options
  • Save hibuno/d17db344712cce789bf696420c0463fd to your computer and use it in GitHub Desktop.
Save hibuno/d17db344712cce789bf696420c0463fd to your computer and use it in GitHub Desktop.
Example of vue component
<template>
<div>
<h1>Hello <span>World</span>!</h1>
<p>Nuxt make it so simple dude!</p>
</div>
</template>
<style lang="scss" scoped>
h1 {
color: red;
span {
color: blue;
}
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment