diff --git a/components.d.ts b/components.d.ts index 2926c62..0ed2f86 100644 --- a/components.d.ts +++ b/components.d.ts @@ -16,6 +16,7 @@ declare module 'vue' { Empty: typeof import('./src/components/empty.vue')['default'] IonApp: typeof import('@ionic/vue')['IonApp'] IonAvatar: typeof import('@ionic/vue')['IonAvatar'] + IonBadge: typeof import('@ionic/vue')['IonBadge'] IonButton: typeof import('@ionic/vue')['IonButton'] IonButtons: typeof import('@ionic/vue')['IonButtons'] IonCheckbox: typeof import('@ionic/vue')['IonCheckbox'] @@ -35,7 +36,9 @@ declare module 'vue' { IonTabBar: typeof import('@ionic/vue')['IonTabBar'] IonTabButton: typeof import('@ionic/vue')['IonTabButton'] IonTabs: typeof import('@ionic/vue')['IonTabs'] + IonTextarea: typeof import('@ionic/vue')['IonTextarea'] IonTitle: typeof import('@ionic/vue')['IonTitle'] + IonToggle: typeof import('@ionic/vue')['IonToggle'] IonToolbar: typeof import('@ionic/vue')['IonToolbar'] LayoutDefault: typeof import('./src/components/layout/default.vue')['default'] RouterLink: typeof import('vue-router')['RouterLink'] @@ -49,6 +52,7 @@ declare global { const Empty: typeof import('./src/components/empty.vue')['default'] const IonApp: typeof import('@ionic/vue')['IonApp'] const IonAvatar: typeof import('@ionic/vue')['IonAvatar'] + const IonBadge: typeof import('@ionic/vue')['IonBadge'] const IonButton: typeof import('@ionic/vue')['IonButton'] const IonButtons: typeof import('@ionic/vue')['IonButtons'] const IonCheckbox: typeof import('@ionic/vue')['IonCheckbox'] @@ -68,7 +72,9 @@ declare global { const IonTabBar: typeof import('@ionic/vue')['IonTabBar'] const IonTabButton: typeof import('@ionic/vue')['IonTabButton'] const IonTabs: typeof import('@ionic/vue')['IonTabs'] + const IonTextarea: typeof import('@ionic/vue')['IonTextarea'] const IonTitle: typeof import('@ionic/vue')['IonTitle'] + const IonToggle: typeof import('@ionic/vue')['IonToggle'] const IonToolbar: typeof import('@ionic/vue')['IonToolbar'] const LayoutDefault: typeof import('./src/components/layout/default.vue')['default'] const RouterLink: typeof import('vue-router')['RouterLink'] diff --git a/src/router/index.ts b/src/router/index.ts index 5486d53..569bb8b 100644 --- a/src/router/index.ts +++ b/src/router/index.ts @@ -59,6 +59,16 @@ const routes: Array = [ component: () => import("@/views/real_name/index.vue"), meta: { requiresAuth: true }, }, + { + path: "/address", + component: () => import("@/views/address/index.vue"), + meta: { requiresAuth: true }, + }, + { + path: "/address/add", + component: () => import("@/views/address/add.vue"), + meta: { requiresAuth: true }, + }, ]; const router = createRouter({ diff --git a/src/views/address/add.vue b/src/views/address/add.vue new file mode 100644 index 0000000..722a1b4 --- /dev/null +++ b/src/views/address/add.vue @@ -0,0 +1,265 @@ + + + + + diff --git a/src/views/address/index.vue b/src/views/address/index.vue new file mode 100644 index 0000000..1c05c46 --- /dev/null +++ b/src/views/address/index.vue @@ -0,0 +1,299 @@ + + + + +