27 lines
871 B
Vue
27 lines
871 B
Vue
<template>
|
|
<v-flex xs12 md4>
|
|
<v-card class="elevation-5 transparent">
|
|
<v-card-text class="text-xs-center">
|
|
<v-icon x-large color="secondary">fa-heart </v-icon>
|
|
</v-card-text>
|
|
<v-card-title primary-title class="layout justify-center">
|
|
<div class="headline">Warehouses</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-flex>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data: () => ({})
|
|
};
|
|
</script>
|
|
|
|
<style>
|
|
</style>
|