mirror of
https://github.com/RPCSX/RPCSX.github.io.git
synced 2026-01-31 01:05:21 +01:00
29 lines
636 B
Vue
29 lines
636 B
Vue
<script setup lang="ts">
|
|
import '../assets/text-styles.css';
|
|
|
|
import { ref } from 'vue'
|
|
|
|
defineProps({
|
|
themex: {
|
|
type: Object
|
|
}
|
|
})
|
|
</script>
|
|
|
|
<style scoped>
|
|
.n-card {
|
|
max-width: 300px;
|
|
}
|
|
</style>
|
|
|
|
<template>
|
|
<n-card hoverable>
|
|
<template #cover>
|
|
<img :src="themex == null ? './assets/logo-light.png' : './assets/logo-dark.png'">
|
|
</template>
|
|
<template #header>
|
|
RPCSX is your PlayStation 4 emulator.
|
|
</template>
|
|
<div class="body-text">Use only with lawfully obtained archival copies of PS4 games you physically own.</div>
|
|
</n-card>
|
|
</template> |