mirror of https://github.com/veypi/OneAuth.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
263 B
Vue
25 lines
263 B
Vue
3 years ago
|
<template>
|
||
|
<div>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts" setup>
|
||
|
import {ref} from "vue";
|
||
|
import api from "../api";
|
||
|
|
||
|
let apps = ref([])
|
||
|
|
||
|
function getApps() {
|
||
|
api.app.list().Start(e => {
|
||
|
apps.value = e
|
||
|
})
|
||
|
}
|
||
|
|
||
|
getApps()
|
||
|
|
||
|
</script>
|
||
|
|
||
|
<style scoped>
|
||
|
|
||
|
</style>
|