|
@@ -21,7 +21,7 @@
|
|
|
import { CashOutModel } from "@/dataModel/cashOut";
|
|
|
const cashOutModel = new CashOutModel();
|
|
|
const useCashout = () => {
|
|
|
- const amount = ref<number>(0);
|
|
|
+ const amount = ref<number | null>(null);
|
|
|
const loading = ref(false);
|
|
|
const cashout = async () => {
|
|
|
loading.value = true;
|