mirror of
https://github.com/Bubka/2FAuth.git
synced 2025-06-20 11:47:53 +02:00
Remove Breadcrumb vue component
This commit is contained in:
parent
b1c2a56c2a
commit
f16b256c0b
@ -1,27 +0,0 @@
|
|||||||
<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>
|
|
4
resources/js/components/index.js
vendored
4
resources/js/components/index.js
vendored
@ -10,7 +10,6 @@ import FormCheckbox from './FormCheckbox'
|
|||||||
import FormButtons from './FormButtons'
|
import FormButtons from './FormButtons'
|
||||||
import VueFooter from './Footer'
|
import VueFooter from './Footer'
|
||||||
import Kicker from './Kicker'
|
import Kicker from './Kicker'
|
||||||
import Breadcrumb from './Breadcrumb'
|
|
||||||
|
|
||||||
// Components that are registered globaly.
|
// Components that are registered globaly.
|
||||||
[
|
[
|
||||||
@ -24,8 +23,7 @@ import Breadcrumb from './Breadcrumb'
|
|||||||
FormCheckbox,
|
FormCheckbox,
|
||||||
FormButtons,
|
FormButtons,
|
||||||
VueFooter,
|
VueFooter,
|
||||||
Kicker,
|
Kicker
|
||||||
Breadcrumb
|
|
||||||
].forEach(Component => {
|
].forEach(Component => {
|
||||||
Vue.component(Component.name, Component)
|
Vue.component(Component.name, Component)
|
||||||
})
|
})
|
||||||
|
2
resources/js/packages/fontawesome.js
vendored
2
resources/js/packages/fontawesome.js
vendored
@ -17,7 +17,6 @@ import {
|
|||||||
faEllipsisH,
|
faEllipsisH,
|
||||||
faBars,
|
faBars,
|
||||||
faSpinner,
|
faSpinner,
|
||||||
faChevronLeft,
|
|
||||||
faCaretUp,
|
faCaretUp,
|
||||||
faCaretDown,
|
faCaretDown,
|
||||||
faLayerGroup,
|
faLayerGroup,
|
||||||
@ -43,7 +42,6 @@ library.add(
|
|||||||
faBars,
|
faBars,
|
||||||
faSpinner,
|
faSpinner,
|
||||||
faGithubAlt,
|
faGithubAlt,
|
||||||
faChevronLeft,
|
|
||||||
faCaretUp,
|
faCaretUp,
|
||||||
faCaretDown,
|
faCaretDown,
|
||||||
faLayerGroup,
|
faLayerGroup,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user