This commit is contained in:
2025-05-19 00:15:15 +07:00
parent 75c11b36a6
commit e97a318237
3 changed files with 13 additions and 3 deletions
+3 -2
View File
@@ -1,6 +1,7 @@
<script setup lang="ts">
import { ref, nextTick, watch, onMounted } from 'vue';
import { useRouter } from 'vue-router';
import { getApiUrl } from './net';
const router = useRouter();
@@ -27,7 +28,7 @@
function getTeam() {
fetch(
"/team",
getApiUrl("/team"),
{
method: "GET",
headers: {
@@ -52,7 +53,7 @@
function addAction() {
fetch(
"/team/actions",
getApiUrl("/team/actions"),
{
method: "POST",
headers: {