2026-03-09 07:43:12 +00:00
|
|
|
<template>
|
|
|
|
|
<div class="pb-16 md:pb-4">
|
|
|
|
|
<!-- Back Button -->
|
2026-06-11 00:24:40 -04:00
|
|
|
<button @click="router.replace('/dashboard/apps/lnd')" class="mb-6 flex items-center gap-2 text-white/70 hover:text-white transition-colors">
|
2026-03-09 07:43:12 +00:00
|
|
|
<svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
|
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 19l-7-7 7-7" />
|
|
|
|
|
</svg>
|
|
|
|
|
Back to LND
|
|
|
|
|
</button>
|
|
|
|
|
|
|
|
|
|
<h1 class="text-2xl font-bold text-white mb-6">Lightning Channels</h1>
|
|
|
|
|
|
2026-07-10 15:21:34 +01:00
|
|
|
<LightningChannelsPanel />
|
2026-03-09 07:43:12 +00:00
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script setup lang="ts">
|
|
|
|
|
import { useRouter } from 'vue-router'
|
2026-07-10 15:21:34 +01:00
|
|
|
import LightningChannelsPanel from '@/components/LightningChannelsPanel.vue'
|
2026-03-09 07:43:12 +00:00
|
|
|
|
|
|
|
|
const router = useRouter()
|
|
|
|
|
</script>
|