mirror of
https://github.com/Megghy/vtsuru.live.git
synced 2025-12-07 02:46:55 +08:00
merge to bun
This commit is contained in:
26
src/views/manage/Setting_PaymentView.vue
Normal file
26
src/views/manage/Setting_PaymentView.vue
Normal file
@@ -0,0 +1,26 @@
|
||||
<script setup lang="ts">
|
||||
import { useAccount } from '@/api/account';
|
||||
import { onMounted } from 'vue';
|
||||
|
||||
const accountInfo = useAccount()
|
||||
|
||||
const { } = defineProps<{
|
||||
|
||||
}>()
|
||||
|
||||
async function getAccountPaymentSettings() {
|
||||
try {
|
||||
|
||||
} catch (error) {
|
||||
console.error(error)
|
||||
}
|
||||
}
|
||||
|
||||
onMounted(() => {
|
||||
getAccountPaymentSettings()
|
||||
});
|
||||
</script>
|
||||
|
||||
<template>
|
||||
WIP...
|
||||
</template>
|
||||
Reference in New Issue
Block a user