Files
release11-tools/Frontend/src/views/LandingView.vue
Mikolaj Widla 971cc5f36a merge new tools (#244)
Co-authored-by: Adam Bem <adam.bem@zoho.eu>
Co-authored-by: Adam Bem <bema@noreply.example.com>
Reviewed-on: #244
2023-09-05 11:15:20 +02:00

16 lines
249 B
Vue

<script lang="ts">
import LandingComponent from '@components/landing/LandingComponent.vue'
export default {
name:"LandingView",
components: {LandingComponent}
}
</script>
<template>
<LandingComponent></LandingComponent>
</template>