You've already forked AstralRinth
forked from didirus/AstralRinth
86c0937616
* fix: app problems post release qa * fix: lint * fix: dont prefill * fix: toggle gap * feat: macs thing * fix: lint
14 lines
343 B
Vue
14 lines
343 B
Vue
<template>{{ instance.name }} overview</template>
|
|
<script setup lang="ts">
|
|
import type ContextMenu from '@/components/ui/ContextMenu.vue'
|
|
import type { GameInstance } from '@/helpers/types'
|
|
|
|
defineProps<{
|
|
instance: GameInstance
|
|
options: InstanceType<typeof ContextMenu>
|
|
offline: boolean
|
|
playing: boolean
|
|
installed: boolean
|
|
}>()
|
|
</script>
|