mirror of
				https://github.com/advplyr/audiobookshelf.git
				synced 2025-10-31 02:17:01 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			395 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			395 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
|   <ui-tooltip v-if="alreadyInLibrary" :text="$strings.LabelAlreadyInYourLibrary" direction="top">
 | |
|     <span class="material-icons ml-1 text-success" style="font-size: 0.8rem">check_circle</span>
 | |
|   </ui-tooltip>
 | |
| </template>
 | |
| 
 | |
| <script>
 | |
| export default {
 | |
|   props: {
 | |
|     alreadyInLibrary: Boolean
 | |
|   },
 | |
|   data() {
 | |
|     return {}
 | |
|   },
 | |
|   computed: {},
 | |
|   methods: {},
 | |
|   mounted() {}
 | |
| }
 | |
| </script>
 |