17 lines
		
	
	
		
			304 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			304 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
|   <div class="columns is-marginless has-text-weight-bold is-family-monospace">
 | |
|     <span class="column is-ellipsis">{{ value }}</span>
 | |
|   </div>
 | |
| </template>
 | |
| 
 | |
| <script>
 | |
| export default {
 | |
|   props: {
 | |
|     value: String,
 | |
|   },
 | |
|   name: "ContainerTitle",
 | |
| };
 | |
| </script>
 | |
| 
 | |
| <style lang="scss" scoped></style>
 | 
