diff --git a/src/pages/Account/AddressList.vue b/src/pages/Account/AddressList.vue index 0f6fd764..0b91d52c 100644 --- a/src/pages/Account/AddressList.vue +++ b/src/pages/Account/AddressList.vue @@ -104,10 +104,7 @@ onMounted(async () => { - + -import { onMounted } from 'vue'; import { useI18n } from 'vue-i18n'; import VnImg from 'src/components/ui/VnImg.vue'; +import CardList from 'src/components/ui/CardList.vue'; import { currency } from 'src/lib/filters.js'; defineProps({ - item: { type: Object, default: () => {} } + item: { type: Object, default: () => {} }, + viewMode: { type: String, default: 'grid' } }); const { t } = useI18n(); - -onMounted(async () => {});