28 lines
344 B
Vue
28 lines
344 B
Vue
<template>
|
|
<div @click.stop="$emit('navClick')">ThumbNav--{{ direction }}</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
direction: {
|
|
type: String,
|
|
default: function () {
|
|
return 'right'
|
|
}
|
|
}
|
|
},
|
|
|
|
data () {
|
|
return {
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
</style>
|