mirror of
				https://github.com/KevinMidboe/planetposen.git
				synced 2025-10-29 17:50:32 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
		
			407 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			407 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <div class="container">
 | 
						|
    <div>image: {{ image }}</div>
 | 
						|
    <div>text: {{ text }}</div>
 | 
						|
  </div>
 | 
						|
</template>
 | 
						|
 | 
						|
<script>
 | 
						|
export default {
 | 
						|
  name: 'ImageBlock',
 | 
						|
  props: {
 | 
						|
    image: {
 | 
						|
      type: String,
 | 
						|
      required: false
 | 
						|
    },
 | 
						|
    text: {
 | 
						|
      type: String,
 | 
						|
      required: false
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 | 
						|
</script>
 | 
						|
 | 
						|
<style lang="scss" scoped>
 | 
						|
.container {
 | 
						|
  background-color: NavajoWhite;
 | 
						|
}
 | 
						|
</style>
 |