mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-15 06:35:20 -07:00
43 lines
1 KiB
Vue
43 lines
1 KiB
Vue
<template>
|
|
<section class="container">
|
|
<div class="flex flex-col items-center text-center">
|
|
<h1 class="title text-6xl font-bold">
|
|
Does it 🦾ARM?
|
|
</h1>
|
|
<h2 class="subtitle text-xl font-bold">
|
|
Apps that are reported to support Apple Silicon
|
|
</h2>
|
|
|
|
<Search />
|
|
<div class="apps">
|
|
<div
|
|
v-for="app in appList"
|
|
:key="app.slug"
|
|
>
|
|
<a :href="`/app/${app.slug}`">
|
|
<div>
|
|
{{ app.name }}
|
|
</div>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</template>
|
|
|
|
<script>
|
|
import Search from '~/components/search.vue'
|
|
|
|
import appList from '~/assets/app-list.json'
|
|
|
|
export default {
|
|
components: {
|
|
Search
|
|
},
|
|
computed: {
|
|
appList() {
|
|
return appList
|
|
}
|
|
}
|
|
}
|
|
</script>
|