Skip to content

Instantly share code, notes, and snippets.

@vikramIde
Created June 15, 2017 06:52
Show Gist options
  • Save vikramIde/359772ae02aed7898e2812cb6649705a to your computer and use it in GitHub Desktop.
Save vikramIde/359772ae02aed7898e2812cb6649705a to your computer and use it in GitHub Desktop.
<template>
<div class="wrapper wrapper-content animated fadeInRight">
Hey Here we will display the Result of the search
</div>
</template>
<script>
export default {
props: ['dataFromSearchPage'],
mounted() {
console.log('Component mounted :: Results')
},
data(){
return {
cards:[]
};
},
methods : {
//Some method goes here
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment