29 lines
854 B
Vue
29 lines
854 B
Vue
<template>
|
|
<v-container>
|
|
<v-col cols="12">
|
|
<v-card class="elevation-5 transparent">
|
|
<v-card-text class="text-center">
|
|
<v-icon x-large color="secondary">fa-crow</v-icon>
|
|
</v-card-text>
|
|
<v-card-title primary-title class="layout justify-center">
|
|
<div class="headline">Purchase orders</div>
|
|
</v-card-title>
|
|
<v-card-text>
|
|
Cras facilisis mi vitae nunc lobortis pharetra. Nulla volutpat
|
|
tincidunt ornare. Pellentesque habitant morbi tristique senectus et
|
|
netus et malesuada fames ac turpis egestas. Nullam in aliquet odio.
|
|
Aliquam eu est vitae tellus bibendum tincidunt. Suspendisse potenti.
|
|
</v-card-text>
|
|
</v-card>
|
|
</v-col>
|
|
</v-container>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data: () => ({})
|
|
};
|
|
</script>
|
|
|
|
<style></style>
|