From b00d4b36ef4bb4ca41540f6f50e249e155a492fa Mon Sep 17 00:00:00 2001 From: mulili Date: Tue, 11 May 2021 14:55:34 +0300 Subject: [PATCH] Added init Brutal NFT Search Component --- dashboard/src/components/rmrk/BrutalSearch/Search.vue | 10 ++++++++++ dashboard/src/router/rmrk.ts | 6 ++++++ 2 files changed, 16 insertions(+) create mode 100644 dashboard/src/components/rmrk/BrutalSearch/Search.vue diff --git a/dashboard/src/components/rmrk/BrutalSearch/Search.vue b/dashboard/src/components/rmrk/BrutalSearch/Search.vue new file mode 100644 index 0000000000..3f3a8fe030 --- /dev/null +++ b/dashboard/src/components/rmrk/BrutalSearch/Search.vue @@ -0,0 +1,10 @@ + + \ No newline at end of file diff --git a/dashboard/src/router/rmrk.ts b/dashboard/src/router/rmrk.ts index daa2e4cdf7..ceebf90cea 100644 --- a/dashboard/src/router/rmrk.ts +++ b/dashboard/src/router/rmrk.ts @@ -9,6 +9,7 @@ const PackItem = () => import('@/components/rmrk/Pack/PackItem.vue') const CollectionItem = () => import('@/components/rmrk/Gallery/CollectionItem.vue') const ViewModel = () => import('@/components/rmrk/Gallery/ViewModel.vue') const SimpleMint = () => import('@/components/rmrk/Create/SimpleMint.vue') +const BrutalSearch = () => import('@/components/rmrk/BrutalSearch/Search.vue') export default [ { @@ -21,6 +22,11 @@ export default [ name: 'nft', component: Gallery, }, + { + path: '/rmrk/search', + name: 'brutal-nft-search', + component: BrutalSearch, + }, { path: '/rmrk/rare', name: 'nftRare',