mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-18 06:44:46 -07:00
Add ListEndButtons to category pages
This commit is contained in:
parent
7467ca2c07
commit
79569f735d
1 changed files with 4 additions and 21 deletions
|
|
@ -31,26 +31,7 @@
|
||||||
</LinkButton>
|
</LinkButton>
|
||||||
</template>
|
</template>
|
||||||
<template v-else>
|
<template v-else>
|
||||||
<LinkButton
|
<ListEndButtons :query="query" />
|
||||||
:href="`https://github.com/ThatGuySam/doesitarm/issues?q=is%3Aissue+${query}`"
|
|
||||||
class="text-xs"
|
|
||||||
>
|
|
||||||
Request an App with Github
|
|
||||||
</LinkButton>
|
|
||||||
|
|
||||||
<LinkButton
|
|
||||||
:href="`https://twitter.com/DoesItARM/status/1330027384041508865`"
|
|
||||||
class="text-xs"
|
|
||||||
>
|
|
||||||
Request an App with Twitter
|
|
||||||
</LinkButton>
|
|
||||||
|
|
||||||
<LinkButton
|
|
||||||
:href="`/apple-silicon-app-test/`"
|
|
||||||
class="text-xs"
|
|
||||||
>
|
|
||||||
Scan Your Own App
|
|
||||||
</LinkButton>
|
|
||||||
</template>
|
</template>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
@ -61,6 +42,7 @@
|
||||||
<script>
|
<script>
|
||||||
import Search from '~/components/search.vue'
|
import Search from '~/components/search.vue'
|
||||||
import LinkButton from '~/components/link-button.vue'
|
import LinkButton from '~/components/link-button.vue'
|
||||||
|
import ListEndButtons from '~/components/list-end-buttons.vue'
|
||||||
|
|
||||||
import { categories, getAppCategory } from '~/helpers/categories.js'
|
import { categories, getAppCategory } from '~/helpers/categories.js'
|
||||||
|
|
||||||
|
|
@ -92,7 +74,8 @@ export default {
|
||||||
},
|
},
|
||||||
components: {
|
components: {
|
||||||
Search,
|
Search,
|
||||||
LinkButton
|
LinkButton,
|
||||||
|
ListEndButtons
|
||||||
},
|
},
|
||||||
data: function () {
|
data: function () {
|
||||||
return {
|
return {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue