feat: magic game flow 1

This commit is contained in:
pskfyi 2022-01-13 21:38:19 -08:00 committed by pskfyi
commit 5029bb70fb
5 changed files with 278 additions and 61 deletions

View file

@ -0,0 +1,34 @@
<template>
<progress-button
:label="spell.name"
:description="spell.description"
:max="100"
:value="$store.state.mana"
:current="current"
:next="next"
@click="doAction"
/>
</template>
<script>
export default {
props: {
spell: { type: Object, required: true },
},
computed: {
current() {
//
return undefined
},
next() {
//
return undefined
},
},
methods: {
cast() {
//
},
},
}
</script>