25 lines
237 B
Vue
25 lines
237 B
Vue
<script setup>
|
|
import Axios from "axios"
|
|
|
|
|
|
const newAccounts = ref([])
|
|
|
|
const setupPage = async () => {
|
|
|
|
}
|
|
|
|
|
|
</script>
|
|
|
|
<template>
|
|
New
|
|
<UButton
|
|
@click="setupPage"
|
|
>
|
|
Setup
|
|
</UButton>
|
|
</template>
|
|
|
|
<style scoped>
|
|
|
|
</style> |