marc-leopold/components/ThumbNav.vue

28 lines
338 B
Vue

<template>
<div @click="$emit('clicked')">ThumbNav--{{ direction }}</div>
</template>
<script>
export default {
props: {
direction: {
type: String,
default: function () {
return 'right'
}
}
},
data () {
return {
}
},
methods: {
}
}
</script>
<style lang="scss" scoped>
</style>