Skip to content

Commit

Permalink
reformat code
Browse files Browse the repository at this point in the history
  • Loading branch information
janmichek committed Sep 2, 2024
1 parent b4be126 commit 675a6fe
Showing 1 changed file with 39 additions and 40 deletions.
79 changes: 39 additions & 40 deletions src/components/TheNavigation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,46 +17,45 @@
<script setup>
import { isDesktop } from '@/utils/screen'
const menuOptions = ref([
{
name: 'Blockchain',
isActive: false,
submenu: [
{
name: 'Accounts',
path: '/accounts',
},
{
name: 'Transactions',
path: '/transactions',
},
{
name: 'Names',
path: '/names',
},
{
name: 'Smart Contracts',
path: '/contracts',
},
{
name: 'Oracles',
path: '/oracles',
},
{
name: 'State Channels',
path: '/state-channels',
},
{
name: 'Nodes',
path: '/nodes',
},
{
name: 'Hyperchains',
path: '/hyperchains',
isDisabled: true,
},
],
},
const menuOptions = ref([{
name: 'Blockchain',
isActive: false,
submenu: [
{
name: 'Accounts',
path: '/accounts',
},
{
name: 'Transactions',
path: '/transactions',
},
{
name: 'Names',
path: '/names',
},
{
name: 'Smart Contracts',
path: '/contracts',
},
{
name: 'Oracles',
path: '/oracles',
},
{
name: 'State Channels',
path: '/state-channels',
},
{
name: 'Nodes',
path: '/nodes',
},
{
name: 'Hyperchains',
path: '/hyperchains',
isDisabled: true,
},
],
},
{
name: 'Tokens',
isActive: false,
Expand Down

0 comments on commit 675a6fe

Please sign in to comment.