Created
March 27, 2018 00:15
-
-
Save ahmedmusawir/a301261321d270090d44b38e36b5123c to your computer and use it in GitHub Desktop.
VUE JS - EMPTY COMPONENT - FOR COPY PASTE
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> | |
<main class="header"> | |
</main> | |
</template> | |
<script> | |
export default { | |
data () { | |
return { | |
} | |
}, | |
methods: { | |
greeting: function() { | |
// return 'This is a test method'; | |
} | |
} | |
} | |
</script> | |
<style lang="scss"> | |
.header { | |
border: 4px dotted yellow; | |
} | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment