diff --git a/components.d.ts b/components.d.ts index c85f90c..e242fd9 100644 --- a/components.d.ts +++ b/components.d.ts @@ -64,6 +64,7 @@ declare module 'vue' { UiResult: typeof import('./src/components/ui/result/index.vue')['default'] UiTabPane: typeof import('./src/components/ui/tab-pane/index.vue')['default'] UiTabs: typeof import('./src/components/ui/tabs/index.vue')['default'] + UiTag: typeof import('./src/components/ui/tag/index.vue')['default'] } } @@ -121,4 +122,5 @@ declare global { const UiResult: typeof import('./src/components/ui/result/index.vue')['default'] const UiTabPane: typeof import('./src/components/ui/tab-pane/index.vue')['default'] const UiTabs: typeof import('./src/components/ui/tabs/index.vue')['default'] + const UiTag: typeof import('./src/components/ui/tag/index.vue')['default'] } \ No newline at end of file diff --git a/src/components/ui/tag/index.vue b/src/components/ui/tag/index.vue new file mode 100644 index 0000000..3ab84cd --- /dev/null +++ b/src/components/ui/tag/index.vue @@ -0,0 +1,48 @@ + + + + + diff --git a/src/router/index.ts b/src/router/index.ts index 5b3ba53..1056b1b 100644 --- a/src/router/index.ts +++ b/src/router/index.ts @@ -66,6 +66,11 @@ const routes: Array = [ path: "/trade-settings/bank-management/add", component: () => import("@/views/trade-settings/bank-management/add.vue"), }, + { + path: "/trade-rwa/:id", + props: true, + component: () => import("@/views/trade-rwa/index.vue"), + }, ]; const router = createRouter({ diff --git a/src/views/chat/index.vue b/src/views/chat/index.vue index bf5d4c7..fa976e9 100644 --- a/src/views/chat/index.vue +++ b/src/views/chat/index.vue @@ -5,7 +5,7 @@ import IcOutlineCleaningServices from "~icons/ic/outline-cleaning-services";