order status updates working

This commit is contained in:
Tim Olson
2023-11-08 23:18:36 -04:00
parent 077e664a30
commit f1bc632074
14 changed files with 259 additions and 21 deletions

20
src/components/Btn.vue Normal file
View File

@@ -0,0 +1,20 @@
<template>
<v-btn variant="outlined">
<v-icon v-if="icon" :icon="icon" :color="color"></v-icon>
<slot/>
</v-btn>
</template>
<script setup>
import {useStore} from "@/store/store";
import {useAttrs} from "vue";
const s = useStore()
const props = defineProps(['icon', 'color'])
const attrs = useAttrs()
</script>
<style scoped lang="scss">
@use "src/styles/vars" as *;
</style>