marc-leopold/components/ThumbNav.vue

28 lines
339 B
Vue
Raw Normal View History

2019-01-04 16:18:45 +00:00
<template>
<div @click="$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>