Files
speckle-server/packages/frontend-2/components/form/ButtonSecondaryViewAll.vue
T
Kristaps Fabians Geikins ba9dee3ea8 feat(fe2): showing view all in certain model views (#1853)
* feat(fe2): showing view all in certain model views

* precommit fixes
2023-11-02 13:34:11 +00:00

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>