mirror of
				https://github.com/scinote-eln/scinote-web.git
				synced 2025-11-01 00:56:05 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			235 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			235 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
|   <a :href="params.data.urls.show" :title="params.data.name">
 | |
|     {{ params.data.name }}
 | |
|   </a>
 | |
| </template>
 | |
| 
 | |
| <script>
 | |
| export default {
 | |
|   props: {
 | |
|     params: {
 | |
|       type: Object,
 | |
|       required: true
 | |
|     }
 | |
|   }
 | |
| };
 | |
| </script>
 |