15 lines
		
	
	
		
			252 B
		
	
	
	
		
			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>
 | |
| 
 |