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.
OneAuth/oaf/src/views/home.vue

25 lines
263 B
Vue

<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>