2019-12-21 23:25:19 +01:00
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<figure class="image is-64x64" style="display: inline-block">
|
|
|
|
<img :src="icon">
|
|
|
|
</figure>
|
|
|
|
<p class="is-size-4 has-text-grey-light">{{ name }}</p>
|
|
|
|
<p class="is-size-6 has-text-grey">{{ email }}</p>
|
|
|
|
<slot></slot>
|
2020-01-02 00:07:47 +01:00
|
|
|
<div class="modal-action-links has-text-grey">
|
|
|
|
<router-link :to="{ name: 'edit', params: { twofaccountId: twofaccountid }}">Edit</router-link>
|
|
|
|
</div>
|
2019-12-21 23:25:19 +01:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
}
|
|
|
|
},
|
|
|
|
props: ['twofaccountid', 'name', 'email', 'icon'],
|
|
|
|
}
|
|
|
|
</script>
|