30 lines
346 B
Vue
30 lines
346 B
Vue
<template>
|
|
<div class="nav-arrow"
|
|
@click="$emit('clicked')">
|
|
->
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
},
|
|
|
|
data () {
|
|
return {
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.nav-arrow {
|
|
font-size: 3em;
|
|
text-align: center;
|
|
background-color: rgba(blue, .3);
|
|
}
|
|
</style>
|