Skip to content

Instantly share code, notes, and snippets.

@alimozdemir
Created September 27, 2018 17:19
Show Gist options
  • Save alimozdemir/1019dbe0c88526f623de978de70df058 to your computer and use it in GitHub Desktop.
Save alimozdemir/1019dbe0c88526f623de978de70df058 to your computer and use it in GitHub Desktop.
<template>
<div>
<blade v-for="(item, index) in items" :items="item" :key="index"></blade>
</div>
</template>
<script>
import blade from './blade'
export default {
name: 'blader',
components: { blade },
data() {
return {
}
},
props: {
items: Array
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment