order status updates working
This commit is contained in:
20
src/components/Btn.vue
Normal file
20
src/components/Btn.vue
Normal 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>
|
||||
Reference in New Issue
Block a user