mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-18 06:44:46 -07:00
Add search to home page
This commit is contained in:
parent
2748394565
commit
7d4ae0310c
2 changed files with 170 additions and 10 deletions
|
|
@ -7,6 +7,8 @@
|
|||
<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"
|
||||
|
|
@ -18,27 +20,19 @@
|
|||
</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 Search from '~/components/search.vue'
|
||||
|
||||
import appList from '~/assets/app-list.json'
|
||||
|
||||
export default {
|
||||
components: {
|
||||
Logo
|
||||
Search
|
||||
},
|
||||
computed: {
|
||||
appList() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue