19 lines
422 B
Vue
19 lines
422 B
Vue
<template>
|
|
<standard-button :href="href" :class="this.class + ' mb-3'" colour="green">
|
|
<unicon fill="white" class="mr-1" height="22" width="22" name="trash-alt"></unicon>
|
|
wiederherstellen
|
|
</standard-button>
|
|
</template>
|
|
|
|
<script>
|
|
import StandardButton from './StandardButton.vue';
|
|
|
|
export default {
|
|
components: { StandardButton },
|
|
props: {
|
|
class: String,
|
|
href: String,
|
|
},
|
|
};
|
|
</script>
|