28 lines
551 B
Vue
28 lines
551 B
Vue
<template>
|
|
<div class="buttons is-right">
|
|
<a class="button is-danger is-light is-small" :href="href">
|
|
<span class="icon">
|
|
<i class="fa fa-solid fa-user-check"></i>
|
|
</span>
|
|
<span>
|
|
{{ nombre }}
|
|
</span>
|
|
</a>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
export default {
|
|
props: {
|
|
nombre: {
|
|
type: String,
|
|
required: true
|
|
},
|
|
href: {
|
|
type: String,
|
|
required: true
|
|
},
|
|
},
|
|
}
|
|
</script>
|