Co-authored-by: widlam <mikolaj.widla@gmail.com> Reviewed-on: #224 Reviewed-by: Adam Bem <bema@noreply.example.com> Co-authored-by: Mikolaj Widla <widlam@noreply.example.com> Co-committed-by: Mikolaj Widla <widlam@noreply.example.com>
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>
|
|
|