order status subscriptions

This commit is contained in:
Tim Olson
2023-11-06 23:49:08 -04:00
parent bec1b33d22
commit 754fd38301
6 changed files with 73 additions and 6 deletions

27
src/components/Orders.vue Normal file
View File

@@ -0,0 +1,27 @@
<template>
<v-table>
<thead>
<tr>
<th></th>
</tr>
</thead>
<tbody>
<tr v-for="order in orders">
<td></td>
</tr>
</tbody>
</v-table>
</template>
<script setup>
import {useStore} from "@/store/store";
const s = useStore()
const orders = 0; // todo tim here
</script>
<style scoped lang="scss">
@use "src/styles/vars" as *;
</style>