Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Brutal NFT Search Component #360

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions dashboard/src/components/rmrk/BrutalSearch/Search.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<template>
</template>
<script lang="ts" >
import { Component, Vue } from 'vue-property-decorator';

@Component({})
export default class Search extends Vue {
public tags: string[] = []
}
</script>
6 changes: 6 additions & 0 deletions dashboard/src/router/rmrk.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 [
{
Expand All @@ -21,6 +22,11 @@ export default [
name: 'nft',
component: Gallery,
},
{
path: '/rmrk/search',
name: 'brutal-nft-search',
component: BrutalSearch,
},
{
path: '/rmrk/rare',
name: 'nftRare',
Expand Down