Skip to content
Snippets Groups Projects

Display buckets and their objects

Merged Daniel Göbel requested to merge feature/5-display-buckets into development
1 file
+ 11
0
Compare changes
  • Side-by-side
  • Inline
+ 11
0
 
<script setup lang="ts">
 
import { useRoute } from "vue-router";
 
 
const route = useRoute();
 
</script>
 
 
<template>
 
<p>Hello {{ route.params.bucket_name }}</p>
 
</template>
 
 
<style scoped></style>
Loading