A Pen by Tahmid Bin Taslim on CodePen.
Created
December 10, 2021 07:34
-
-
Save tahmidbintaslim/ef0eac44c9cd23c24c427f4f6a5b3f9a to your computer and use it in GitHub Desktop.
Vue Dropdown Menu
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<link href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900" rel="stylesheet"> | |
<link href="https://cdn.jsdelivr.net/npm/@mdi/[email protected]/css/materialdesignicons.min.css" rel="stylesheet"> | |
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/vuetify.min.css" rel="stylesheet"> | |
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, minimal-ui"> | |
</head> | |
<body> | |
<div id="app"> | |
<v-app id="inspire"> | |
<v-container fluid> | |
<v-row align="center"> | |
<v-col | |
class="d-flex" | |
cols="12" | |
sm="6" | |
> | |
<v-select | |
:items="items" | |
label="Are you interested in developers, designers, or both?" | |
></v-select> | |
</v-col> | |
</v-row> | |
</v-container> | |
</v-app> | |
</div> | |
<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> | |
</body> | |
</html> |
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
new Vue({ | |
el: '#app', | |
vuetify: new Vuetify(), | |
data: () => ({ | |
items: ['π Developers', 'π±βπ€ Designers', 'Developers and Designers'], | |
}), | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment