mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-18 06:44:46 -07:00
93 lines
2.7 KiB
Vue
93 lines
2.7 KiB
Vue
<template>
|
|
<section class="container py-24">
|
|
<div class="flex flex-col items-center">
|
|
<h1 class="title text-4xl md:text-6xl font-hairline leading-tight text-center">
|
|
Does it ARM?
|
|
</h1>
|
|
<h2 class="subtitle md:text-xl font-light text-center">
|
|
Games that are reported to support Apple Silicon
|
|
</h2>
|
|
|
|
<small class="data-credit opacity-75 text-center">
|
|
<span>Data generously provided by </span>
|
|
<span>
|
|
<a
|
|
href="https://twitter.com/__tosh"
|
|
class="font-bold"
|
|
>Thomas Schranz</a>
|
|
</span>
|
|
<span>via</span>
|
|
<span>
|
|
<a
|
|
href="https://twitter.com/__tosh/status/1329099180476928002"
|
|
class="font-bold"
|
|
>Games and Apps on Apple Silicon</a>
|
|
</span>
|
|
</small>
|
|
|
|
<Search
|
|
:app-list="gameList"
|
|
:quick-buttons="quickButtons"
|
|
no-email-subscribe
|
|
@update:query="query = $event"
|
|
/>
|
|
|
|
<LinkButton
|
|
:href="`https://twitter.com/__tosh/status/1329099180476928002`"
|
|
>
|
|
Report a Game
|
|
</LinkButton>
|
|
</div>
|
|
</section>
|
|
</template>
|
|
|
|
<script>
|
|
import Search from '~/components/search.vue'
|
|
import LinkButton from '~/components/link-button.vue'
|
|
|
|
import gameList from '~/game-list.json'
|
|
|
|
export default {
|
|
components: {
|
|
Search,
|
|
LinkButton
|
|
},
|
|
data: function () {
|
|
return {
|
|
query: '',
|
|
quickButtons: [
|
|
{
|
|
label: '✅ Full Native Support',
|
|
query: 'status:native'
|
|
},
|
|
{
|
|
label: '✳️ Rosetta',
|
|
query: 'status:rosetta'
|
|
},
|
|
{
|
|
label: '🚫 Unsupported',
|
|
query: 'status:no'
|
|
}
|
|
]
|
|
}
|
|
},
|
|
computed: {
|
|
gameList() {
|
|
return gameList
|
|
}
|
|
},
|
|
head() {
|
|
return {
|
|
title: `Games supported on Apple Silicon - Does it ARM`,
|
|
// meta: [
|
|
// // hid is used as unique identifier. Do not use `vmid` for it as it will not work
|
|
// {
|
|
// hid: 'description',
|
|
// name: 'description',
|
|
// content: 'My custom description'
|
|
// }
|
|
// ]
|
|
}
|
|
}
|
|
}
|
|
</script>
|