This repository has been archived on 2022-11-26. You can view files and clone it, but cannot push or open issues or pull requests.
IcyNet.eu/src/script/views/OAuth2.vue

21 lines
345 B
Vue

<template lang="pug">
.root
h1 Manage OAuth2 Clients
o-auth-clients
</template>
<script type="text/javascript">
import OAuthClients from '../component/OAuthClients.vue'
export default {
methods: {
newClient: function () {
alert('not yet')
}
},
components: {
OAuthClients
}
}
</script>