added admin (group, user) interface components

This commit is contained in:
Tobias Kurze
2019-04-10 09:20:13 +02:00
parent a15e0c2d50
commit c043918fb8
13 changed files with 282 additions and 13 deletions

47
src/components/User.vue Normal file
View File

@@ -0,0 +1,47 @@
<!-- components/User.vue -->
<template>
<div>
<section class="hero is-primary">
<div class="hero-body">
<div class="container has-text-centered">
<h3 class="title">Manage users</h3>
<p class="subtitle error-msg">{{ errorMsg }}</p>
</div>
</div>
</section>
</div>
</template>
<script>
import { EventBus } from '@/utils'
import {getRemainingJwtValiditySeconds} from "../utils";
export default {
data () {
return {
users: '',
errorMsg: '',
};
},
methods: {
},
mounted () {
},
beforeDestroy () {
},
computed: {
},
}
</script>
<style lang="scss">
.error-msg {
color: red;
font-weight: bold;
}
</style>