diff --git a/components/alerts.vue b/components/alerts.vue new file mode 100644 index 0000000..1301eab --- /dev/null +++ b/components/alerts.vue @@ -0,0 +1,63 @@ + + + + + diff --git a/components/entryEditor.vue b/components/entryEditor.vue new file mode 100644 index 0000000..49a0651 --- /dev/null +++ b/components/entryEditor.vue @@ -0,0 +1,51 @@ + + + diff --git a/components/navigation/navigation.vue b/components/navigation/navigation.vue index 02ee1f2..c72c67d 100644 --- a/components/navigation/navigation.vue +++ b/components/navigation/navigation.vue @@ -13,18 +13,20 @@ const navOpen = ref(!mobile.value); Database Project - + - + + + diff --git a/components/orderView.vue b/components/orderView.vue new file mode 100644 index 0000000..aa540b7 --- /dev/null +++ b/components/orderView.vue @@ -0,0 +1,56 @@ + + + diff --git a/components/pagedList.vue b/components/pagedList.vue index 952a2c7..24dc5ed 100644 --- a/components/pagedList.vue +++ b/components/pagedList.vue @@ -2,6 +2,7 @@ const props = defineProps<{ records: Array, recordKey: string, + recordValue?: string, variant?: "default" | "inset" | "accordion" | "popout", modelValue?: any, }>(); @@ -22,6 +23,7 @@ defineEmits<{ v-for="record in records" :key="record[recordKey]" :variant="props.variant ?? 'default'" + :value="recordValue !== undefined ? record[recordValue] : undefined" >