add slot system for transaction link information items

This commit is contained in:
ogerly 2022-03-18 19:15:19 +01:00
parent 302b2705ca
commit 26ec3f51bb

View File

@ -0,0 +1,16 @@
<template>
<div>
<slot :name="type"></slot>
</div>
</template>
<script>
export default {
name: 'TransactionLinkInformationItem',
props: {
type: {
type: String,
required: true,
},
},
}
</script>