Adds backup functionality

This commit is contained in:
Alicia Sykes
2021-05-24 17:25:16 +01:00
parent 8ffbfb8123
commit 44b2594dfa
9 changed files with 150 additions and 16 deletions

View File

@@ -1,5 +1,5 @@
<template>
<button>
<button @click="click()">
<slot name="text"></slot>
<slot name="icon"></slot>
</button>
@@ -11,6 +11,7 @@ export default {
name: 'Button',
props: {
text: String,
click: Function,
},
};
</script>