mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-18 06:44:46 -07:00
50 lines
1.2 KiB
Vue
50 lines
1.2 KiB
Vue
<template>
|
|
<section class="container">
|
|
<div>
|
|
<logo/>
|
|
<h1 class="title">
|
|
Does it ARM
|
|
</h1>
|
|
<h2 class="subtitle">
|
|
Apps that are reported to support Apple Silicon
|
|
</h2>
|
|
<div class="apps">
|
|
<div
|
|
v-for="app in appList"
|
|
:key="app.slug"
|
|
>
|
|
<a :href="`/app/${app.slug}`">
|
|
<div>
|
|
{{ app.name }}
|
|
</div>
|
|
</a>
|
|
</div>
|
|
<a
|
|
href="https://nuxtjs.org/"
|
|
target="_blank"
|
|
class="button--green">Documentation</a>
|
|
<a
|
|
href="https://github.com/nuxt/nuxt.js"
|
|
target="_blank"
|
|
class="button--grey">GitHub</a>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</template>
|
|
|
|
<script>
|
|
import Logo from '~/components/Logo.vue'
|
|
|
|
import appList from '~/assets/app-list.json'
|
|
|
|
export default {
|
|
components: {
|
|
Logo
|
|
},
|
|
computed: {
|
|
appList() {
|
|
return appList
|
|
}
|
|
}
|
|
}
|
|
</script>
|