123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157 |
- <template>
- <v-container class="fill-height">
- <v-responsive
- class="align-centerfill-height mx-auto"
- max-width="900"
- >
- <v-img
- class="mb-4"
- height="150"
- src="@/assets/logo.png"
- />
- <div class="text-center">
- <div class="text-body-2 font-weight-light mb-n1">Welcome to</div>
- <h1 class="text-h2 font-weight-bold">Vuetify</h1>
- </div>
- <div class="py-4" />
- <v-row>
- <v-col cols="12">
- <v-card
- class="py-4"
- color="surface-variant"
- image="https://cdn.vuetifyjs.com/docs/images/one/create/feature.png"
- prepend-icon="mdi-rocket-launch-outline"
- rounded="lg"
- variant="outlined"
- >
- <template #image>
- <v-img position="top right" />
- </template>
- <template #title>
- <h2 class="text-h5 font-weight-bold">Get started</h2>
- </template>
- <template #subtitle>
- <div class="text-subtitle-1">
- Change this page by updating <v-kbd>{{ `<HelloWorld />` }}</v-kbd> in <v-kbd>components/HelloWorld.vue</v-kbd>.
- </div>
- </template>
- <v-overlay
- opacity=".12"
- scrim="primary"
- contained
- model-value
- persistent
- />
- </v-card>
- </v-col>
- <v-col cols="6">
- <v-card
- append-icon="mdi-open-in-new"
- class="py-4"
- color="surface-variant"
- href="https://vuetifyjs.com/"
- prepend-icon="mdi-text-box-outline"
- rel="noopener noreferrer"
- rounded="lg"
- subtitle="Learn about all things Vuetify in our documentation."
- target="_blank"
- title="Documentation"
- variant="text"
- >
- <v-overlay
- opacity=".06"
- scrim="primary"
- contained
- model-value
- persistent
- />
- </v-card>
- </v-col>
- <v-col cols="6">
- <v-card
- append-icon="mdi-open-in-new"
- class="py-4"
- color="surface-variant"
- href="https://vuetifyjs.com/introduction/why-vuetify/#feature-guides"
- prepend-icon="mdi-star-circle-outline"
- rel="noopener noreferrer"
- rounded="lg"
- subtitle="Explore available framework Features."
- target="_blank"
- title="Features"
- variant="text"
- >
- <v-overlay
- opacity=".06"
- scrim="primary"
- contained
- model-value
- persistent
- />
- </v-card>
- </v-col>
- <v-col cols="6">
- <v-card
- append-icon="mdi-open-in-new"
- class="py-4"
- color="surface-variant"
- href="https://vuetifyjs.com/components/all"
- prepend-icon="mdi-widgets-outline"
- rel="noopener noreferrer"
- rounded="lg"
- subtitle="Discover components in the API Explorer."
- target="_blank"
- title="Components"
- variant="text"
- >
- <v-overlay
- opacity=".06"
- scrim="primary"
- contained
- model-value
- persistent
- />
- </v-card>
- </v-col>
- <v-col cols="6">
- <v-card
- append-icon="mdi-open-in-new"
- class="py-4"
- color="surface-variant"
- href="https://discord.vuetifyjs.com"
- prepend-icon="mdi-account-group-outline"
- rel="noopener noreferrer"
- rounded="lg"
- subtitle="Connect with Vuetify developers."
- target="_blank"
- title="Community"
- variant="text"
- >
- <v-overlay
- opacity=".06"
- scrim="primary"
- contained
- model-value
- persistent
- />
- </v-card>
- </v-col>
- </v-row>
- </v-responsive>
- </v-container>
- </template>
- <script setup>
- //
- </script>
|