@@ -66,7 +72,8 @@ const vitality = ref(0);
const expData = ref
({});
const attrData = ref({});
const accData = ref({});
-const buff = ref([]);
+const buff = ref>([]);
+const stock = ref>([]);
onMounted(async () => {
try {
@@ -88,6 +95,7 @@ const BindData = async (): Promise => {
attrData.value = result.data.attr;
accData.value = result.data.acc;
buff.value = result.data.buff;
+ stock.value = result.data.stock;
console.log(result);
}
else {