Files
release11-tools/new-frontend/src/views/FormatterView.vue

15 lines
252 B
Vue

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