Co-authored-by: Adam Bem <adam.bem@zoho.eu> Co-authored-by: Adam Bem <bema@noreply.example.com> Reviewed-on: #244
16 lines
249 B
Vue
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>
|
|
|