ba9dee3ea8
* feat(fe2): showing view all in certain model views * precommit fixes
17 lines
299 B
Vue
17 lines
299 B
Vue
<template>
|
|
<div class="w-full flex justify-center">
|
|
<FormButton :to="to" size="sm" color="card" @click="$emit('click', $event)">
|
|
View All
|
|
</FormButton>
|
|
</div>
|
|
</template>
|
|
<script setup lang="ts">
|
|
defineEmits<{
|
|
click: [MouseEvent]
|
|
}>()
|
|
|
|
defineProps<{
|
|
to?: string
|
|
}>()
|
|
</script>
|