mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-04 07:24:13 +00:00 
			
		
		
		
	fix code style
This commit is contained in:
		
							parent
							
								
									24d4124ffc
								
							
						
					
					
						commit
						ac4a001e9f
					
				
					 1 changed files with 56 additions and 52 deletions
				
			
		| 
						 | 
				
			
			@ -58,23 +58,27 @@ SPDX-License-Identifier: AGPL-3.0-only
 | 
			
		|||
<script lang="ts" setup>
 | 
			
		||||
import * as Misskey from 'misskey-js';
 | 
			
		||||
import { defineProps, shallowRef } from 'vue';
 | 
			
		||||
import MkLink from '@/components/MkLink.vue';
 | 
			
		||||
import { i18n } from '@/i18n.js';
 | 
			
		||||
import MkModalWindow from '@/components/MkModalWindow.vue';
 | 
			
		||||
import MkKeyValue from '@/components/MkKeyValue.vue';
 | 
			
		||||
import MkLink from './MkLink.vue';
 | 
			
		||||
 | 
			
		||||
const props = defineProps<{
 | 
			
		||||
  emoji: Misskey.entities.EmojiDetailed,
 | 
			
		||||
}>();
 | 
			
		||||
 | 
			
		||||
const emit = defineEmits<{
 | 
			
		||||
	(ev: 'ok', cropped: Misskey.entities.DriveFile): void;
 | 
			
		||||
	(ev: 'cancel'): void;
 | 
			
		||||
	(ev: 'closed'): void;
 | 
			
		||||
}>();
 | 
			
		||||
 | 
			
		||||
const dialogEl = shallowRef<InstanceType<typeof MkModalWindow>>();
 | 
			
		||||
const cancel = () => {
 | 
			
		||||
 | 
			
		||||
function cancel() {
 | 
			
		||||
	emit('cancel');
 | 
			
		||||
	dialogEl.value!.close();
 | 
			
		||||
};
 | 
			
		||||
}
 | 
			
		||||
</script>
 | 
			
		||||
 | 
			
		||||
<style lang="scss" module>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue