Skip to content

Instantly share code, notes, and snippets.

@kenny-io
Created April 23, 2019 20:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kenny-io/c37c76bf88e64794a2d18d5b98196478 to your computer and use it in GitHub Desktop.
Save kenny-io/c37c76bf88e64794a2d18d5b98196478 to your computer and use it in GitHub Desktop.
//src/components/HelloWorld.vue
<template>
<div>
<Cards />
</div>
</template>
<script>
import Cards from './Cards.vue'
export default {
name:'cards',
components: {
Cards
},
data() {
return {
};
},
};
</script>
<style scoped>
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment