alerta_alerta-webui/src/views/Perms.vue

18 lines
299 B
Vue

<template>
<div class="perms">
<perm-list />
</div>
</template>
<script lang="ts">
import { Component, Vue } from 'vue-property-decorator'
import PermList from '@/components/PermList.vue'
@Component({
components: {
PermList
}
})
export default class Perms extends Vue {}
</script>