mirror of
https://github.com/Bubka/2FAuth.git
synced 2025-01-12 09:18:13 +01:00
27 lines
511 B
Vue
27 lines
511 B
Vue
<template>
|
|
<div class="mb-5">
|
|
<router-link :to="{ name: 'accounts' }">
|
|
<font-awesome-icon :icon="['fas', 'chevron-left']" />
|
|
Back
|
|
</router-link>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'Breadcrumb',
|
|
|
|
props: {
|
|
routeName: {
|
|
type: String,
|
|
default: '/'
|
|
},
|
|
|
|
caption: {
|
|
type: String,
|
|
default: ''
|
|
},
|
|
}
|
|
}
|
|
|
|
</script> |