Created
January 16, 2018 14:46
-
-
Save hibuno/d17db344712cce789bf696420c0463fd to your computer and use it in GitHub Desktop.
Example of vue 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> | |
<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