Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ahmedmusawir/a301261321d270090d44b38e36b5123c to your computer and use it in GitHub Desktop.
Save ahmedmusawir/a301261321d270090d44b38e36b5123c to your computer and use it in GitHub Desktop.
VUE JS - EMPTY COMPONENT - FOR COPY PASTE
<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