mirror of
				https://github.com/tl-open-source/tl-rtc-file.git
				synced 2025-10-31 02:26:55 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			246 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			246 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
|     <div>
 | |
|       <a-button @click="onClick">Home</a-button>
 | |
|       {{ test }}
 | |
|     </div>
 | |
| </template>
 | |
| <script setup>
 | |
| const { data: test } = await useFetch('/api/test');
 | |
| const onClick=async function(){
 | |
|     console.log(1);
 | |
|     
 | |
| 
 | |
| }
 | |
| </script> | 
