mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
removed import of Breadcrumb component
This commit is contained in:
parent
5c1c00dccd
commit
37d904e1a3
3 changed files with 1 additions and 8 deletions
|
@ -1 +1,2 @@
|
|||
export { default as Icon } from './Icon'
|
||||
export { default as Breadcrumb } from './Breadcrumb'
|
||||
|
|
|
@ -72,7 +72,6 @@
|
|||
|
||||
<script>
|
||||
import api from '@/helpers/api'
|
||||
import Breadcrumb from '@/components/Breadcrumb'
|
||||
|
||||
export default {
|
||||
name: 'User',
|
||||
|
@ -91,9 +90,6 @@ export default {
|
|||
const data = await api.get('users/' + this.name)
|
||||
if (!data) return
|
||||
this.user = data
|
||||
},
|
||||
components: {
|
||||
Breadcrumb
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
|
|
@ -33,7 +33,6 @@
|
|||
|
||||
<script>
|
||||
import api from '@/helpers/api'
|
||||
import Breadcrumb from '@/components/Breadcrumb'
|
||||
|
||||
export default {
|
||||
name: 'Users',
|
||||
|
@ -51,9 +50,6 @@ export default {
|
|||
} else {
|
||||
this.users = data.users
|
||||
}
|
||||
},
|
||||
components: {
|
||||
Breadcrumb
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
|
Loading…
Reference in a new issue