marc-leopold/components/ThumbNav.vue

28 lines
344 B
Vue
Raw Normal View History

2019-01-04 16:18:45 +00:00
<template>
2019-01-09 21:23:03 +00:00
<div @click.stop="$emit('navClick')">ThumbNav--{{ direction }}</div>
2019-01-04 16:18:45 +00:00
</template>
<script>
export default {
props: {
direction: {
type: String,
default: function () {
return 'right'
}
}
},
data () {
return {
}
},
methods: {
}
}
</script>
<style lang="scss" scoped>
</style>