rename: client -> frontend
This commit is contained in:
		
							
								
								
									
										25
									
								
								packages/frontend/src/pages/drive.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										25
									
								
								packages/frontend/src/pages/drive.vue
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,25 @@ | ||||
| <template> | ||||
| <div> | ||||
| 	<XDrive ref="drive" @cd="x => folder = x"/> | ||||
| </div> | ||||
| </template> | ||||
|  | ||||
| <script lang="ts" setup> | ||||
| import { computed } from 'vue'; | ||||
| import XDrive from '@/components/MkDrive.vue'; | ||||
| import * as os from '@/os'; | ||||
| import { i18n } from '@/i18n'; | ||||
| import { definePageMetadata } from '@/scripts/page-metadata'; | ||||
|  | ||||
| let folder = $ref(null); | ||||
|  | ||||
| const headerActions = $computed(() => []); | ||||
|  | ||||
| const headerTabs = $computed(() => []); | ||||
|  | ||||
| definePageMetadata(computed(() => ({ | ||||
| 	title: folder ? folder.name : i18n.ts.drive, | ||||
| 	icon: 'ti ti-cloud', | ||||
| 	hideHeader: true, | ||||
| }))); | ||||
| </script> | ||||
		Reference in New Issue
	
	Block a user
	 syuilo
					syuilo