 860e8bb5d8
			
		
	
	860e8bb5d8
	
	
	
		
			
			Co-authored-by: syuilo <Syuilotan@yahoo.co.jp> Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com>
		
			
				
	
	
		
			28 lines
		
	
	
		
			548 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			548 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <!--
 | |
| SPDX-FileCopyrightText: syuilo and misskey-project
 | |
| SPDX-License-Identifier: AGPL-3.0-only
 | |
| -->
 | |
| 
 | |
| <template>
 | |
| <MkStickyContainer>
 | |
| 	<template #header><MkPageHeader/></template>
 | |
| 	<MkSpacer :contentMax="800">
 | |
| 		<MkClickerGame/>
 | |
| 	</MkSpacer>
 | |
| </MkStickyContainer>
 | |
| </template>
 | |
| 
 | |
| <script lang="ts" setup>
 | |
| import MkClickerGame from '@/components/MkClickerGame.vue';
 | |
| import { definePageMetadata } from '@/scripts/page-metadata.js';
 | |
| 
 | |
| definePageMetadata(() => ({
 | |
| 	title: '🍪👈',
 | |
| 	icon: 'ti ti-cookie',
 | |
| }));
 | |
| </script>
 | |
| 
 | |
| <style lang="scss" module>
 | |
| 
 | |
| </style>
 |