Skip to content

Instantly share code, notes, and snippets.

@mtermoul
Last active February 15, 2020 21:37
Show Gist options
  • Save mtermoul/056f041e62449f7dd3a9fae9d0b486a0 to your computer and use it in GitHub Desktop.
Save mtermoul/056f041e62449f7dd3a9fae9d0b486a0 to your computer and use it in GitHub Desktop.
Vuetify components styling using props
<template>
<v-container px-5>
<v-row justify="center">
<v-col cols="6">
<v-card color="green">
<v-card-title>Chocolate cheesecake recipe</v-card-title>
<c-card-text>
<ul>
<li>5 eggs</li>
<li>1 cup of warm milk</li>
<li>2 cups of flour</li>
<li>1/2 cup of sugar</li>
<li>...</li>
</ul>
</c-card-text>
</v-card>
</v-col>
</v-row>
</v-container>
</template>
<script>
export default {
name: 'HomePage'
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment