mirror of
				https://github.com/TeaOSLab/EdgeAdmin.git
				synced 2025-11-04 21:50:28 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			7 lines
		
	
	
		
			268 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			268 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
Vue.component("size-capacity-view", {
 | 
						|
	props:["v-default-text", "v-value"],
 | 
						|
	template: `<div>
 | 
						|
	<span v-if="vValue != null && vValue.count > 0">{{vValue.count}}{{vValue.unit.toUpperCase().replace(/(.)B/, "$1iB")}}</span>
 | 
						|
	<span v-else>{{vDefaultText}}</span>
 | 
						|
</div>`
 | 
						|
}) |