moves request inside own component

This commit is contained in:
2019-06-13 21:30:45 +02:00
parent a1a270f5f0
commit 5a3c628e8e
4 changed files with 35 additions and 15 deletions

View File

@@ -0,0 +1,21 @@
<template>
<button class="button is-primary" disabled>
<span class="icon">
<i class="fas fa-praying-hands"></i>
</span>
<small>Request pending...</small>
</button>
</template>
<style>
export default {
props: ["item"],
data () {
return {
};
},
computed: {
}
}
</style>