scrimba
Learn Vuetify
Buttons
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
Buttons
Expand for more info
components
Buttons.vue
run
preview
console
<template>
<div>
<h3>Buttons</h3>
<v-card class="mt-5 mb-8">
<v-card-text>
<v-row>
<v-col cols="12">
<v-btn>Normal</v-btn>
</v-col>
</v-row>
<v-row>
<v-col cols="12">
<v-btn tile outlined color="success">
<v-icon left>mdi-pencil</v-icon> Edit
</v-btn>
</v-col>
</v-row>
<v-row>
<v-col cols="12">
<v-btn text icon color="pink">
<v-icon>mdi-heart</v-icon>
</v-btn>
<v-btn text icon color="deep-orange">
<v-icon>mdi-thumb-up</v-icon>
</v-btn>
</v-col>
</v-row>
<v-row>
<v-col>
<v-btn class="mx-2" fab dark color="indigo">
<v-icon dark>mdi-plus</v-icon>
</v-btn>
</v-col>
</v-row>
</v-card-text>
</v-card>
</div>
</template>
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:20