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 Icon } from './Icon'
|
||||||
|
export { default as Breadcrumb } from './Breadcrumb'
|
||||||
|
|
|
@ -72,7 +72,6 @@
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import api from '@/helpers/api'
|
import api from '@/helpers/api'
|
||||||
import Breadcrumb from '@/components/Breadcrumb'
|
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'User',
|
name: 'User',
|
||||||
|
@ -91,9 +90,6 @@ export default {
|
||||||
const data = await api.get('users/' + this.name)
|
const data = await api.get('users/' + this.name)
|
||||||
if (!data) return
|
if (!data) return
|
||||||
this.user = data
|
this.user = data
|
||||||
},
|
|
||||||
components: {
|
|
||||||
Breadcrumb
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -33,7 +33,6 @@
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import api from '@/helpers/api'
|
import api from '@/helpers/api'
|
||||||
import Breadcrumb from '@/components/Breadcrumb'
|
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'Users',
|
name: 'Users',
|
||||||
|
@ -51,9 +50,6 @@ export default {
|
||||||
} else {
|
} else {
|
||||||
this.users = data.users
|
this.users = data.users
|
||||||
}
|
}
|
||||||
},
|
|
||||||
components: {
|
|
||||||
Breadcrumb
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
Loading…
Add table
Reference in a new issue