A Pen by victor herasme on CodePen.
Created
October 8, 2019 20:29
-
-
Save vherasme/e57d5d30757fa9f1a0c1ec2e7e909e04 to your computer and use it in GitHub Desktop.
Vuetify Template
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="app"> | |
<v-app> | |
<v-content> | |
<v-container> | |
<v-form > | |
<v-container @click="showDetails()"> | |
<v-row class="some-class"> | |
<v-col cols="3" sm="3" v-for="p in placeholders" :key="p"> | |
<v-text-field :placeholder="p" single-line outlined > | |
</v-text-field> | |
</v-col> | |
</v-row> | |
</v-container> | |
</v-form> | |
</v-container> | |
</v-content> | |
</v-app> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Looking for the v1.5 template? | |
// https://codepen.io/johnjleider/pen/GVoaNe | |
new Vue({ | |
el: '#app', | |
vuetify: new Vuetify(), | |
data: () => ({ | |
placeholders: ["Title1", "Title2", "Title3", "Title4", "Title5", "Title6", "Title7", "Title8"] | |
}) | |
}) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue.js"></script> | |
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vuetify.js"></script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.some-class{ | |
flex-wrap: nowrap; | |
overflow-x: auto; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900" rel="stylesheet" /> | |
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/vuetify.min.css" rel="stylesheet" /> | |
<link href="https://cdn.jsdelivr.net/npm/@mdi/[email protected]/css/materialdesignicons.min.css" rel="stylesheet" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment