localhost-front/src/components/button/BackBtn.vue

13 lines
240 B
Vue

<template>
<button type="button" class="btn btn-info" @click="$emit('click')">
<i class="bx bx-left-arrow-alt"></i>
</button>
</template>
<script>
export default {
name: "BackButton",
emits: ["click"],
};
</script>