This commit is contained in:
Viet An
2026-07-06 11:25:42 +07:00
parent f72af58d78
commit be0be49454
22 changed files with 301 additions and 391 deletions

View File

@@ -34,7 +34,7 @@
</div>
</template>
<script setup>
var array = [
const array = [
{
code: "transactionphase",
name: "Giai đoạn giao dịch",
@@ -167,7 +167,7 @@ var array = [
},
},
];
var current = ref(array[0]);
const current = ref(array[0]);
function changeTab(v) {
current.value = null;
setTimeout(() => (current.value = v));