|
| 1 | +<template> |
| 2 | + <fvMain> |
| 3 | + <fvSidebar v-model="sidebar" class="sidebar"> |
| 4 | + <div class="fv-text-center fv-padding"> |
| 5 | + <fvAvatar name="Default User" src="https://randomuser.me/api/portraits/women/44.jpg" size="128px" /> |
| 6 | + <h2 class="fv-padding-sm"> |
| 7 | + Default User |
| 8 | + </h2> |
| 9 | + </div> |
| 10 | + <fvList parent> |
| 11 | + <fvListItem class="selected"> |
| 12 | + <i class="material-icons">sentiment_very_satisfied</i> Welcome |
| 13 | + </fvListItem> |
| 14 | + <fvListItem disabled> |
| 15 | + <i class="material-icons">person</i> Profile |
| 16 | + </fvListItem> |
| 17 | + <fvListItem disabled> |
| 18 | + <i class="material-icons">mail</i> Messages |
| 19 | + </fvListItem> |
| 20 | + <fvListItem disabled> |
| 21 | + <i class="material-icons">event_available</i> Events |
| 22 | + </fvListItem> |
| 23 | + <fvListItem disabled> |
| 24 | + <i class="material-icons">photo</i> Pictures |
| 25 | + </fvListItem> |
| 26 | + </fvList> |
| 27 | + </fvSidebar> |
| 28 | + <fvContent> |
| 29 | + <fvHeader> |
| 30 | + <fvButton class="fv-margin-end fv-hidden-lg fv-hidden-xl" @click="toggleSidebar"> |
| 31 | + <i class="material-icons">menu</i> |
| 32 | + </fvButton> |
| 33 | + <div class="fv-margin-end"> |
| 34 | + <FramevuerkLogo /> |
| 35 | + </div> |
| 36 | + <div class="fv-grow"> |
| 37 | + <h2 class="fv-hidden-xs"> |
| 38 | + Framevuerk |
| 39 | + </h2> |
| 40 | + <small class="fv-hidden-sm fv-hidden-xs"> Generated Nuxt + Framevuerk Template </small> |
| 41 | + </div> |
| 42 | + <fvButton class="fv-margin-end" @click.prevent="toggleDocsMenu"> |
| 43 | + <i class="material-icons">list</i> |
| 44 | + <span class="fv-hidden-xs fv-hidden-sm"> Documents </span> |
| 45 | + <fvMenu v-model="docsMenu"> |
| 46 | + <div> |
| 47 | + <div class="fv-border-bottom fv-padding"> |
| 48 | + <label class="fv-text-light"> <i class="material-icons">list</i> Documents </label> |
| 49 | + </div> |
| 50 | + <div class="fv-padding"> |
| 51 | + <a class="fv-link fv-block fv-margin-bottom" target="_blank" href="https://www.framevuerk.com/"><i class="material-icons">link</i> Framevuerk Docs</a> |
| 52 | + <a class="fv-link fv-block fv-margin-bottom" target="_blank" href="https://github.com/framevuerk/framevuerk"><i class="material-icons">link</i> Framevuerk on Github</a> |
| 53 | + <a class="fv-link fv-block fv-margin-bottom" target="_blank" href="https://nuxtjs.org/"><i class="material-icons">link</i> Nuxt Docs</a> |
| 54 | + <a class="fv-link fv-block" target="_blank" href="https://github.com/nuxt/nuxt.js"><i class="material-icons">link</i> Nuxt on GitHub</a> |
| 55 | + </div> |
| 56 | + </div> |
| 57 | + </fvMenu> |
| 58 | + </fvButton> |
| 59 | + <fvButton class="fv-margin-end"> |
| 60 | + <i class="material-icons">clear</i> |
| 61 | + <span class="fv-hidden-xs fv-hidden-sm"> Cancel </span> |
| 62 | + </fvButton> |
| 63 | + <fvButton> |
| 64 | + <i class="material-icons">done</i> |
| 65 | + <span class="fv-hidden-xs fv-hidden-sm"> Submit </span> |
| 66 | + </fvButton> |
| 67 | + </fvHeader> |
| 68 | + <div class="content fv-padding"> |
| 69 | + <div class="fv-margin-bottom fv-hidden-xs fv-hidden-sm" /> |
| 70 | + <div class="content__header fv-margin-bottom fv-padding"> |
| 71 | + <div class="fv-padding fv-margin-bottom fv-text-center"> |
| 72 | + <Logo /> |
| 73 | + </div> |
| 74 | + <p> |
| 75 | + <b>Framevuerk</b> is a Fast, Responsive, Without Dependencies, Both Direction Support and Configurable UI Framework based on <b>Vue.js</b>. |
| 76 | + In this template we just add it to <b>Nuxt.js</b> and put some of most usable component inside a form to show you how it's look like. |
| 77 | + </p> |
| 78 | + </div> |
| 79 | + <div class="content__body fv-border fv-radius fv-shadow"> |
| 80 | + <label class="fv-control-label fv-padding"> <i class="material-icons">person_add</i> Create New User </label> |
| 81 | + <div class="fv-padding container"> |
| 82 | + <fvForm class="fv-row"> |
| 83 | + <fvFormElement class="fv-col-md-6" label="First Name"> |
| 84 | + <fvInput v-model="exmps.firstName" placeholder="Enter First Name" /> |
| 85 | + </fvFormElement> |
| 86 | + <fvFormElement class="fv-col-md-6" label="Last Name"> |
| 87 | + <fvInput v-model="exmps.lastName" placeholder="Enter Last Name" /> |
| 88 | + </fvFormElement> |
| 89 | + <fvFormElement class="fv-col-12" label="Gender" inline> |
| 90 | + <fvCheck v-model="exmps.gender" content="m"> |
| 91 | + Men |
| 92 | + </fvCheck> |
| 93 | + <fvCheck v-model="exmps.gender" content="f"> |
| 94 | + Women |
| 95 | + </fvCheck> |
| 96 | + <fvCheck v-model="exmps.gender" :content="null"> |
| 97 | + Other |
| 98 | + </fvCheck> |
| 99 | + </fvFormElement> |
| 100 | + <fvFormElement class="fv-col-12" label="Home to Work Distance"> |
| 101 | + <template slot="label" slot-scope="scope"> |
| 102 | + {{ scope.label }} |
| 103 | + <span class="fv-margin-start-sm fv-text-primary"> |
| 104 | + <span v-if="exmps.htw">~{{ exmps.htw }}km</span> |
| 105 | + </span> |
| 106 | + </template> |
| 107 | + <fvRange v-model="exmps.htw" :data="{from: 1, to: 35}" /> |
| 108 | + </fvFormElement> |
| 109 | + <fvFormElement class="fv-col-sm-4" label="Is Maried?" inline> |
| 110 | + <fvSwitch v-model="exmps.married" @input="exmps.marriageDate = undefined" /> |
| 111 | + </fvFormElement> |
| 112 | + <fvFormElement class="fv-col-sm-8" label="Date of Marriage"> |
| 113 | + <fvDatepicker v-model="exmps.marriageDate" placeholder="Enter Date of Marriage" :disabled="!exmps.married" /> |
| 114 | + </fvFormElement> |
| 115 | + <fvFormElement class="fv-col" label="Living Continent"> |
| 116 | + <fvSelect |
| 117 | + v-model="exmps.continent" |
| 118 | + placeholder="Enter Living Continent" |
| 119 | + :options="['Africa','Antarctica','Asia','Europe','North America','Australia/Oceania','South America']" |
| 120 | + text-key="" |
| 121 | + value-key="" |
| 122 | + disabled-key="" |
| 123 | + /> |
| 124 | + </fvFormElement> |
| 125 | + <fvFormElement class="fv-col-12" label="Biography"> |
| 126 | + <fvTextarea v-model="exmps.bio" placeholder="Enter Your Biography" auto-height /> |
| 127 | + </fvFormElement> |
| 128 | + </fvForm> |
| 129 | + </div> |
| 130 | + </div> |
| 131 | + </div> |
| 132 | + </fvContent> |
| 133 | + </fvMain> |
| 134 | +</template> |
| 135 | + |
| 136 | +<script> |
| 137 | +import Logo from '~/components/Logo.vue' |
| 138 | +import FramevuerkLogo from '~/components/FramevuerkLogo.vue' |
| 139 | +
|
| 140 | +export default { |
| 141 | + components: { |
| 142 | + Logo, |
| 143 | + FramevuerkLogo |
| 144 | + }, |
| 145 | + data () { |
| 146 | + return { |
| 147 | + sidebar: false, |
| 148 | + docsMenu: false, |
| 149 | + slider: 'One', |
| 150 | + exmps: { |
| 151 | + htw: 13, |
| 152 | + firstName: undefined, |
| 153 | + lastName: undefined, |
| 154 | + gender: 'm', |
| 155 | + continent: undefined, |
| 156 | + married: undefined, |
| 157 | + marriageDate: undefined, |
| 158 | + bio: undefined |
| 159 | + } |
| 160 | + } |
| 161 | + }, |
| 162 | + methods: { |
| 163 | + toggleSidebar () { |
| 164 | + this.sidebar = !this.sidebar |
| 165 | + }, |
| 166 | + toggleDocsMenu () { |
| 167 | + setTimeout(() => { |
| 168 | + this.docsMenu = !this.docsMenu |
| 169 | + }) |
| 170 | + } |
| 171 | + } |
| 172 | +} |
| 173 | +</script> |
| 174 | + |
| 175 | +<style scoped> |
| 176 | +.content { |
| 177 | + margin: 0 auto; |
| 178 | + max-width: 768px; |
| 179 | +} |
| 180 | +.sidebar { |
| 181 | + min-width: 300px; |
| 182 | +} |
| 183 | +</style> |
0 commit comments