refactor: cleanup

This commit is contained in:
Methapon2001 2024-04-12 08:02:01 +07:00
parent fad1b59981
commit dd2202a7c7
5 changed files with 3 additions and 10 deletions

View file

@ -1,6 +1,4 @@
<script setup lang="ts">
import useUserStore from 'src/stores/user';
const firstName = defineModel<string>('firstName');
const lastName = defineModel<string>('lastName');
const firstNameEN = defineModel<string>('firstNameEN');

View file

@ -1,5 +1,4 @@
<script lang="ts" setup>
import { ref } from 'vue';
import { Icon } from '@iconify/vue';
import AppBox from 'components/app/AppBox.vue';
@ -27,8 +26,6 @@ defineEmits<{
(e: 'updateCard', id: string): void;
(e: 'enterCard', id: string): void;
}>();
const status = ref(false);
</script>
<template>