Implemented basic Vue.js frontend (#222)
Co-authored-by: Adam Bem <adam.bem@zoho.eu> Co-authored-by: widlam <mikolaj.widla@gmail.com> Reviewed-on: #222 Reviewed-by: Mikolaj Widla <widlam@noreply.example.com>
This commit is contained in:
14
Frontend/src/views/FormatterView.vue
Normal file
14
Frontend/src/views/FormatterView.vue
Normal file
@@ -0,0 +1,14 @@
|
||||
<script lang="ts">
|
||||
import FormatterComponent from '@components/FormatterComponent.vue'
|
||||
|
||||
export default {
|
||||
name:"FormatterView",
|
||||
components: {FormatterComponent}
|
||||
}
|
||||
</script>
|
||||
|
||||
|
||||
<template>
|
||||
<FormatterComponent></FormatterComponent>
|
||||
</template>
|
||||
|
||||
15
Frontend/src/views/LandingView.vue
Normal file
15
Frontend/src/views/LandingView.vue
Normal file
@@ -0,0 +1,15 @@
|
||||
<script lang="ts">
|
||||
import LandingComponent from '@components/LandingComponent.vue'
|
||||
|
||||
|
||||
export default {
|
||||
name:"LandingView",
|
||||
components: {LandingComponent}
|
||||
}
|
||||
</script>
|
||||
|
||||
|
||||
<template>
|
||||
<LandingComponent></LandingComponent>
|
||||
</template>
|
||||
|
||||
14
Frontend/src/views/RestMockView.vue
Normal file
14
Frontend/src/views/RestMockView.vue
Normal file
@@ -0,0 +1,14 @@
|
||||
<script lang="ts">
|
||||
import RestMockComponent from '@components/RestMockComponent.vue'
|
||||
|
||||
export default {
|
||||
name:"RestMockView",
|
||||
components: {RestMockComponent}
|
||||
}
|
||||
</script>
|
||||
|
||||
|
||||
<template>
|
||||
<RestMockComponent></RestMockComponent>
|
||||
</template>
|
||||
|
||||
14
Frontend/src/views/XmlToolView.vue
Normal file
14
Frontend/src/views/XmlToolView.vue
Normal file
@@ -0,0 +1,14 @@
|
||||
<script lang="ts">
|
||||
import XmlToolComponent from '@components/XmlToolComponent.vue'
|
||||
|
||||
export default {
|
||||
name:"XmlToolView",
|
||||
components: {XmlToolComponent}
|
||||
}
|
||||
</script>
|
||||
|
||||
|
||||
<template>
|
||||
<XmlToolComponent></XmlToolComponent>
|
||||
</template>
|
||||
|
||||
Reference in New Issue
Block a user