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