21 lines
522 B
Vue
21 lines
522 B
Vue
<template>
|
|
<needs-signer>
|
|
<phone-card>
|
|
<v-card-title><v-icon icon="mdi-information-outline" size="small" color="grey-darken-1"/> Vault Orders</v-card-title>
|
|
<v-card-item>
|
|
<orders/>
|
|
</v-card-item>
|
|
</phone-card>
|
|
</needs-signer>
|
|
</template>
|
|
|
|
<script setup>
|
|
import Orders from "@/components/Status.vue";
|
|
import NeedsSigner from "@/components/NeedsSigner.vue";
|
|
import PhoneCard from "@/components/PhoneCard.vue";
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
@use "src/styles/vars" as *;
|
|
</style>
|