Created
July 27, 2018 22:16
-
-
Save nabrown/3b00c19446bef56d1d844a103abb71ae to your computer and use it in GitHub Desktop.
Standard, single-file component
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> | |
<figure :class="type" v-on:click="$emit('click')"> | |
<img :src="src" /> | |
<figcaption v-if="$slots.default"> | |
<span><slot></slot></span> | |
</figcaption> | |
<div class="tags" v-if="tags && type != 'framed'"> | |
<span v-for="tag in tags"> {{ tag }}</span> | |
</div> | |
</figure> | |
</template> | |
<script> | |
export default { | |
name: 'FigureStandardSFC', | |
props: { | |
src: { | |
required: true, | |
type: String | |
}, | |
type: { | |
required: true, | |
type: String | |
}, | |
tags: { | |
required: false, | |
type: Array | |
} | |
} | |
} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment