mirror of
				https://github.com/KevinMidboe/vue-js-modal.git
				synced 2025-10-29 18:00:20 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			189 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			189 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
|   <div class="example-modal-content">
 | |
|     <h1>This is a custom component</h1>
 | |
|     <p>{{ text }}</p>
 | |
|   </div>
 | |
| </template>
 | |
| 
 | |
| <script>
 | |
| export default {
 | |
|   props: ['text']
 | |
| }
 | |
| </script>
 |