scrimba
Learn Vuetify
Grid
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

AboutCommentsNotes
Grid
Expand for more info
components
Grid.vue
run
preview
console
<template>
<div>
<h3>Grid</h3>
<v-card class="mt-5 mb-8">
<v-card-text>
<v-container>
<v-row>
<v-col cols="12">
<v-card
class="pa-2"
outlined
tile
>
Column
</v-card>
</v-col>
</v-row>
<v-row>
<v-col cols="4">
<v-card
class="pa-2"
outlined
tile
>
Column
</v-card>
</v-col>
<v-col cols="4">
<v-card
class="pa-2"
outlined
tile
>
Column
</v-card>
</v-col>
<v-col cols="4">
<v-card
class="pa-2"
outlined
tile
>
Column
</v-card>
</v-col>
</v-row>
</v-container>
</v-card-text>
</v-card>
</div>
</template>

<style scoped>
/* .container {
border: 1px solid green;
}
.row {
border: 1px solid red;
}
.col {
border: 1px solid blue;
} */
</style>
Console
"Download the Vue Devtools extension for a better development experience: https://github.com/vuejs/vue-devtools"
,
"You are running Vue in development mode. Make sure to turn on production mode when deploying for production. See more tips at https://vuejs.org/guide/deployment.html"
,
/index.html
-6:24