 8855a5fffb
			
		
	
	8855a5fffb
	
	
	
		
			
			* components/abuse-report-window.vue * use <script setup> * ✌️ * components/analog-clock.vue * wip components/autocomplete.vue * ✌️ * ✌️ * fix * wip components/captcha.vue * clean up * components/channel-follow-button * components/channel-preview.vue * components/core-core.vue * components/code.vue * wip components/date-separated-list.vue * fix * fix autocomplete.vue * ✌️ * remove global property * use <script setup> * components/dialog.vue * clena up * fix dialog.vue * Resolve https://github.com/misskey-dev/misskey/pull/8121#discussion_r781250966
		
			
				
	
	
		
			16 lines
		
	
	
		
			296 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			296 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
| <XCode :code="code" :lang="lang" :inline="inline"/>
 | |
| </template>
 | |
| 
 | |
| <script lang="ts" setup>
 | |
| import { defineAsyncComponent } from 'vue';
 | |
| 
 | |
| defineProps<{
 | |
| 	code: string;
 | |
| 	lang?: string;
 | |
| 	inline?: boolean;
 | |
| }>();
 | |
| 
 | |
| const XCode = defineAsyncComponent(() => import('./code-core.vue'));
 | |
| </script>
 |