├── .babelrc ├── .gitignore ├── .vscode ├── launch.json └── tasks.json ├── ClientApp ├── .github │ └── ISSUE_TEMPLATE.md ├── api │ └── api.js ├── assets │ ├── App.vue │ ├── app-drawer-items.js │ ├── app.js │ ├── entry-client.js │ ├── entry-server.js │ ├── index.template.html │ └── supporters.js ├── build │ ├── setup-dev-server.js │ ├── vue-loader.config.js │ ├── webpack.base.config.js │ ├── webpack.client.config.js │ └── webpack.server.config.js ├── components │ ├── core │ │ ├── AppAd.vue │ │ ├── AppAlert.vue │ │ ├── AppBackFab.vue │ │ ├── AppDrawer.vue │ │ ├── AppFab.vue │ │ ├── AppFooter.vue │ │ ├── AppFooterAlt.vue │ │ ├── AppList.vue │ │ ├── AppSnackbar.vue │ │ ├── AppTableOfContents.vue │ │ ├── AppToolbar.vue │ │ ├── AppView.vue │ │ └── index.js │ ├── generator │ │ ├── C1.vue │ │ ├── C2.vue │ │ ├── C3.vue │ │ ├── C4.vue │ │ ├── C5.vue │ │ └── index.js │ ├── helpers │ │ ├── Codepen.vue │ │ ├── Example.vue │ │ ├── Markup.vue │ │ ├── PageHead.vue │ │ ├── Parameters.vue │ │ ├── SectionHead.vue │ │ ├── SectionText.vue │ │ └── index.js │ ├── index.js │ ├── misc │ │ ├── CtaBtn.vue │ │ ├── Grid.vue │ │ ├── HelpMeChoose.vue │ │ ├── MaskTable.vue │ │ ├── PatreonBtn.vue │ │ ├── SupportVuetify.vue │ │ ├── TemplateList.vue │ │ └── index.js │ ├── store │ │ ├── StoreHeader.vue │ │ └── StoreProduct.vue │ └── views │ │ ├── DocView.vue │ │ ├── ExampleView.vue │ │ ├── FullscreenView.vue │ │ ├── RootView.vue │ │ └── index.js ├── examples │ ├── alerts │ │ ├── closable.vue │ │ ├── contextual.vue │ │ ├── icon.vue │ │ ├── outline.vue │ │ └── transition.vue │ ├── alignment │ │ └── example.vue │ ├── avatars │ │ ├── advanced.vue │ │ ├── iconAndText.vue │ │ └── standard.vue │ ├── badges │ │ ├── character.vue │ │ ├── icon.vue │ │ ├── inline.vue │ │ ├── overlap.vue │ │ └── visibility.vue │ ├── bottom-navigation │ │ ├── colorAndShift.vue │ │ ├── iconsAndText.vue │ │ └── toggle.vue │ ├── bottom-sheets │ │ ├── inset.vue │ │ └── standard.vue │ ├── breadcrumbs │ │ ├── iconDividers.vue │ │ └── textDividers.vue │ ├── buttons │ │ ├── appBar.vue │ │ ├── block.vue │ │ ├── depressed.vue │ │ ├── dropdown.vue │ │ ├── flat.vue │ │ ├── floating.vue │ │ ├── icon.vue │ │ ├── loaders.vue │ │ ├── outline.vue │ │ ├── raised.vue │ │ ├── round.vue │ │ ├── sizing.vue │ │ ├── toggle.vue │ │ └── usage.vue │ ├── cards │ │ ├── components.vue │ │ ├── customActions.vue │ │ ├── grids.vue │ │ ├── horizontal.vue │ │ └── mediaWithText.vue │ ├── carousels │ │ ├── customIcons.vue │ │ ├── customTransition.vue │ │ ├── default.vue │ │ ├── hideControls.vue │ │ └── hideDelimiters.vue │ ├── chips │ │ ├── closable.vue │ │ ├── colored.vue │ │ ├── default.vue │ │ ├── icon.vue │ │ ├── inSelects.vue │ │ ├── label.vue │ │ └── outline.vue │ ├── colors │ │ ├── classes.vue │ │ ├── colorPack.vue │ │ └── textClasses.vue │ ├── data-iterator │ │ └── simple.vue │ ├── data-tables │ │ ├── crud.vue │ │ ├── customIcons.vue │ │ ├── editdialog.vue │ │ ├── expand.vue │ │ ├── footer.vue │ │ ├── headerCell.vue │ │ ├── headerless.vue │ │ ├── headers.vue │ │ ├── noData.vue │ │ ├── pageText.vue │ │ ├── paginate.vue │ │ ├── progress.vue │ │ ├── search.vue │ │ ├── select.vue │ │ ├── server.vue │ │ ├── sort.vue │ │ └── standard.vue │ ├── date-pickers │ │ ├── dateAllowedDates.vue │ │ ├── dateBirthday.vue │ │ ├── dateColorable.vue │ │ ├── dateCurrent.vue │ │ ├── dateCustomFormat.vue │ │ ├── dateDialogAndMenu.vue │ │ ├── dateEvents.vue │ │ ├── dateFormatting.vue │ │ ├── dateIcons.vue │ │ ├── dateInternationalization.vue │ │ ├── dateLight.vue │ │ ├── datePickerDate.vue │ │ ├── dateReadonly.vue │ │ ├── dateWidth.vue │ │ ├── monthAllowedMonths.vue │ │ ├── monthColorable.vue │ │ ├── monthCurrent.vue │ │ ├── monthDialogAndMenu.vue │ │ ├── monthIcons.vue │ │ ├── monthInternationalization.vue │ │ ├── monthLight.vue │ │ ├── monthReadonly.vue │ │ └── monthWidth.vue │ ├── dialogs │ │ ├── form.vue │ │ ├── fullscreen.vue │ │ ├── modal.vue │ │ ├── overflowed.vue │ │ ├── scrollable.vue │ │ ├── simple.vue │ │ └── withoutActivator.vue │ ├── display │ │ └── hiddenElements.vue │ ├── dividers │ │ ├── dividerList.vue │ │ ├── dividerListPortrait.vue │ │ ├── dividerPortrait.vue │ │ ├── fullBleed.vue │ │ ├── inset.vue │ │ ├── lightAndDark.vue │ │ └── subheaders.vue │ ├── expansion-panels │ │ ├── accordion.vue │ │ ├── customIcons.vue │ │ ├── expand.vue │ │ ├── focusable.vue │ │ └── popout.vue │ ├── floating-action-buttons │ │ ├── displayAnimation.vue │ │ ├── lateralScreens.vue │ │ ├── promotedAction.vue │ │ ├── small.vue │ │ └── speedDial.vue │ ├── footer │ │ ├── companyFooter.vue │ │ ├── default.vue │ │ ├── indigoFooter.vue │ │ └── tealFooter.vue │ ├── forms │ │ ├── basicValidation.vue │ │ ├── submitAndClear.vue │ │ ├── validationWithSubmitAndClear.vue │ │ ├── veeValidate.vue │ │ └── vuelidate.vue │ ├── grid-lists │ │ ├── default.vue │ │ └── subheader.vue │ ├── grid │ │ ├── directionAndAlign.vue │ │ ├── grid.vue │ │ ├── nestedGrid.vue │ │ ├── offset.vue │ │ ├── order.vue │ │ ├── rowColumnBreakpoint.vue │ │ ├── spacer.vue │ │ ├── tags.vue │ │ └── uniqueLayouts.vue │ ├── icons │ │ ├── buttons.vue │ │ ├── color.vue │ │ ├── fontAwesome.vue │ │ ├── mdi.vue │ │ └── standard.vue │ ├── jumbotrons │ │ ├── color.vue │ │ ├── gradient.vue │ │ ├── gradientWithImage.vue │ │ └── usage.vue │ ├── layouts │ │ ├── baseline.vue │ │ ├── baselineFlipped.vue │ │ ├── centered.vue │ │ ├── complex.vue │ │ ├── dark.vue │ │ ├── googleContacts.vue │ │ ├── googleKeep.vue │ │ ├── googleYoutube.vue │ │ └── sandbox.vue │ ├── lists │ │ ├── actionTitleAndSubtitle.vue │ │ ├── actionWithTitleAndSubtitle.vue │ │ ├── avatarSubheaderTitleAndAction.vue │ │ ├── avatarThreeLines.vue │ │ ├── avatarTitleAndAction.vue │ │ ├── avatarTwoLines.vue │ │ ├── cardList.vue │ │ ├── expansionLists.vue │ │ ├── iconTwoLinesAndAction.vue │ │ ├── subheadingsAndDividers.vue │ │ └── titleSubtitleActionsAndActionText.vue │ ├── menus │ │ ├── absolute.vue │ │ ├── absoluteWithoutActivator.vue │ │ ├── activator.vue │ │ ├── customTransition.vue │ │ ├── hover.vue │ │ ├── menus.vue │ │ └── popover.vue │ ├── navigation-drawers │ │ ├── dark.vue │ │ ├── mini.vue │ │ ├── permanent.vue │ │ ├── permanentClipped.vue │ │ ├── permanentFloating.vue │ │ ├── permanentFloatingCard.vue │ │ ├── persistent.vue │ │ └── temporary.vue │ ├── paginations │ │ ├── disabled.vue │ │ ├── icons.vue │ │ ├── limit.vue │ │ ├── long.vue │ │ ├── round.vue │ │ └── short.vue │ ├── parallax │ │ ├── content.vue │ │ ├── customHeight.vue │ │ ├── default.vue │ │ └── jumbotron.vue │ ├── progress │ │ ├── circularColored.vue │ │ ├── circularDefault.vue │ │ ├── circularIndeterminate.vue │ │ ├── circularRotate.vue │ │ ├── circularSizeAndWidth.vue │ │ ├── linearBuffer.vue │ │ ├── linearCustomColors.vue │ │ ├── linearCustomHeightAndContextualColors.vue │ │ ├── linearDeterminate.vue │ │ ├── linearIndeterminate.vue │ │ └── linearQueryIndeterminateAndDeterminate.vue │ ├── resizing │ │ └── default.vue │ ├── ripples │ │ ├── buttons.vue │ │ ├── customColor.vue │ │ ├── customRipple.vue │ │ ├── expansionPanels.vue │ │ ├── htmlElement.vue │ │ ├── navigationDrawers.vue │ │ ├── tabs.vue │ │ └── toolbars.vue │ ├── scrolling │ │ ├── default.vue │ │ ├── options.vue │ │ └── usage.vue │ ├── selection-controls │ │ ├── checkboxesArray.vue │ │ ├── checkboxesBoolean.vue │ │ ├── checkboxesColors.vue │ │ ├── checkboxesInlineTexfield.vue │ │ ├── checkboxesStates.vue │ │ ├── example.vue │ │ ├── radiosColors.vue │ │ ├── radiosDefault.vue │ │ ├── radiosDirection.vue │ │ ├── switchesArray.vue │ │ ├── switchesBoolean.vue │ │ ├── switchesColors.vue │ │ └── switchesStates.vue │ ├── selects │ │ ├── asynchronous.vue │ │ ├── autocomplete.vue │ │ ├── combobox.vue │ │ ├── customFilter.vue │ │ ├── customTextAndValue.vue │ │ ├── icons.vue │ │ ├── light.vue │ │ ├── multiple.vue │ │ ├── scopedSlots.vue │ │ └── tags.vue │ ├── sliders │ │ ├── continuous.vue │ │ ├── customColors.vue │ │ ├── discrete.vue │ │ ├── editableNumericValue.vue │ │ └── icons.vue │ ├── snackbars │ │ ├── contextual.vue │ │ └── position.vue │ ├── spacing │ │ └── horizontal.vue │ ├── steppers │ │ ├── alternateError.vue │ │ ├── alternateLabels.vue │ │ ├── alternativeError.vue │ │ ├── dynamic.vue │ │ ├── editable.vue │ │ ├── error.vue │ │ ├── example.vue │ │ ├── horizontal.vue │ │ ├── linear.vue │ │ ├── nonEditable.vue │ │ ├── nonLinear.vue │ │ ├── optional.vue │ │ ├── vertical.vue │ │ └── verticalError.vue │ ├── subheaders │ │ ├── grid.vue │ │ ├── list.vue │ │ ├── menu.vue │ │ └── social.vue │ ├── tabs │ │ ├── alignWithTitle.vue │ │ ├── centered.vue │ │ ├── content.vue │ │ ├── desktop.vue │ │ ├── fixedTabs.vue │ │ ├── grow.vue │ │ ├── icons.vue │ │ ├── iconsAndText.vue │ │ ├── overflowToMenu.vue │ │ ├── pagination.vue │ │ ├── right.vue │ │ ├── search.vue │ │ └── toolbar.vue │ ├── text-fields │ │ ├── box.vue │ │ ├── characterCounter.vue │ │ ├── customColors.vue │ │ ├── customValidation.vue │ │ ├── fullWidthWithCharacterCounter.vue │ │ ├── hint.vue │ │ ├── icon.vue │ │ ├── label.vue │ │ ├── masks.vue │ │ ├── multiLine.vue │ │ ├── password.vue │ │ ├── prefixesAndSuffixes.vue │ │ ├── progressBar.vue │ │ ├── requiredFields.vue │ │ ├── singleLine.vue │ │ ├── solo.vue │ │ ├── textarea.vue │ │ └── validation.vue │ ├── time-pickers │ │ ├── time24hFormat.vue │ │ ├── timeAllowedTimes.vue │ │ ├── timeColorable.vue │ │ ├── timeDialogAndMenu.vue │ │ ├── timeLight.vue │ │ └── timeWidth.vue │ ├── toolbars │ │ ├── appBar.vue │ │ ├── appBarExtension.vue │ │ ├── appBarItems.vue │ │ ├── appBarMenu.vue │ │ ├── columnWidthWithHierarchy.vue │ │ ├── dense.vue │ │ ├── denseProminent.vue │ │ ├── flexibleAndCard.vue │ │ ├── floatingWithSearch.vue │ │ ├── prominent.vue │ │ ├── scrolling.vue │ │ ├── systemBarsStatusWindow.vue │ │ ├── usage.vue │ │ └── variations.vue │ ├── tooltips │ │ ├── alignment.vue │ │ ├── default.vue │ │ └── visibility.vue │ ├── touch-support │ │ └── default.vue │ └── transitions │ │ ├── customOrigin.vue │ │ ├── fadeTransition.vue │ │ ├── scaleTransition.vue │ │ ├── slideXTransitions.vue │ │ └── slideYTransitions.vue ├── i18n │ ├── index.js │ └── languages.js ├── lang │ ├── en │ │ ├── additional │ │ │ └── Generator.js │ │ ├── components │ │ │ ├── Alerts.js │ │ │ ├── Avatars.js │ │ │ ├── Badges.js │ │ │ ├── BottomNavigation.js │ │ │ ├── BottomSheets.js │ │ │ ├── Breadcrumbs.js │ │ │ ├── Buttons.js │ │ │ ├── Cards.js │ │ │ ├── Carousels.js │ │ │ ├── Chips.js │ │ │ ├── DataIterator.js │ │ │ ├── DataTables.js │ │ │ ├── DatePickers.js │ │ │ ├── Dialogs.js │ │ │ ├── Dividers.js │ │ │ ├── ExpansionPanels.js │ │ │ ├── FloatingActionButtons.js │ │ │ ├── Footer.js │ │ │ ├── Forms.js │ │ │ ├── HelpMeChoose.js │ │ │ ├── Icons.js │ │ │ ├── Jumbotrons.js │ │ │ ├── Lists.js │ │ │ ├── Menus.js │ │ │ ├── NavigationDrawers.js │ │ │ ├── Paginations.js │ │ │ ├── Parallax.js │ │ │ ├── Progress.js │ │ │ ├── SelectionControls.js │ │ │ ├── Selects.js │ │ │ ├── Sliders.js │ │ │ ├── Snackbars.js │ │ │ ├── Steppers.js │ │ │ ├── Subheaders.js │ │ │ ├── Tabs.js │ │ │ ├── TemplateList.js │ │ │ ├── TextFields.js │ │ │ ├── TimePickers.js │ │ │ ├── Toolbars.js │ │ │ ├── Tooltips.js │ │ │ └── index.js │ │ ├── directives │ │ │ ├── Resizing.js │ │ │ ├── Ripples.js │ │ │ ├── Scrolling.js │ │ │ ├── TouchSupport.js │ │ │ └── index.js │ │ ├── generic │ │ │ ├── Common.js │ │ │ ├── Events.js │ │ │ ├── Pages.js │ │ │ ├── Params.js │ │ │ ├── Props.js │ │ │ ├── Slots.js │ │ │ ├── Types.js │ │ │ └── index.js │ │ ├── getting-started │ │ │ ├── Contributing.js │ │ │ ├── FrequentlyAskedQuestions.js │ │ │ ├── QuickStart.js │ │ │ ├── Roadmap.js │ │ │ ├── SponsorsAndBackers.js │ │ │ ├── WhyVuetify.js │ │ │ └── index.js │ │ ├── guides │ │ │ ├── ALaCarte.js │ │ │ ├── ServerSideRendering.js │ │ │ └── index.js │ │ ├── index.js │ │ ├── layout │ │ │ ├── Alignment.js │ │ │ ├── Display.js │ │ │ ├── Elevation.js │ │ │ ├── Grid.js │ │ │ ├── GridLists.js │ │ │ ├── PreDefined.js │ │ │ ├── PreMadeThemes.js │ │ │ ├── Sandbox.js │ │ │ ├── Spacing.js │ │ │ └── index.js │ │ ├── meta.js │ │ ├── mixins │ │ │ ├── Applicationable.js │ │ │ ├── Bootable.js │ │ │ ├── Colorable.js │ │ │ ├── DataIterable.js │ │ │ ├── Delayable.js │ │ │ ├── Detachable.js │ │ │ ├── Filterable.js │ │ │ ├── Input.js │ │ │ ├── Loadable.js │ │ │ ├── Menuable.js │ │ │ ├── Picker.js │ │ │ ├── Positionable.js │ │ │ ├── Rippleable.js │ │ │ ├── Routable.js │ │ │ ├── Soloable.js │ │ │ ├── Themeable.js │ │ │ ├── Transitionable.js │ │ │ ├── Validatable.js │ │ │ └── index.js │ │ ├── motion │ │ │ ├── Scrolling.js │ │ │ ├── Transitions.js │ │ │ └── index.js │ │ ├── style │ │ │ ├── Colors.js │ │ │ ├── Content.js │ │ │ ├── Theme.js │ │ │ ├── Typography.js │ │ │ └── index.js │ │ └── vuetify │ │ │ ├── AppDrawer.js │ │ │ ├── AppToolbar.js │ │ │ ├── Home.js │ │ │ ├── Store.js │ │ │ └── index.js │ ├── index.js │ ├── ja │ │ ├── additional │ │ │ └── Generator.js │ │ ├── components │ │ │ ├── Alerts.js │ │ │ ├── Avatars.js │ │ │ ├── Badges.js │ │ │ ├── BottomNavigation.js │ │ │ ├── BottomSheets.js │ │ │ ├── Breadcrumbs.js │ │ │ ├── Buttons.js │ │ │ ├── Cards.js │ │ │ ├── Carousels.js │ │ │ ├── Chips.js │ │ │ ├── DataIterator.js │ │ │ ├── DataTables.js │ │ │ ├── DatePickers.js │ │ │ ├── Dialogs.js │ │ │ ├── Dividers.js │ │ │ ├── ExpansionPanels.js │ │ │ ├── FloatingActionButtons.js │ │ │ ├── Footer.js │ │ │ ├── Forms.js │ │ │ ├── Grid.js │ │ │ ├── GridLists.js │ │ │ ├── Icons.js │ │ │ ├── Jumbotrons.js │ │ │ ├── Lists.js │ │ │ ├── Menus.js │ │ │ ├── NavigationDrawers.js │ │ │ ├── Paginations.js │ │ │ ├── Parallax.js │ │ │ ├── Progress.js │ │ │ ├── SelectionControls.js │ │ │ ├── Selects.js │ │ │ ├── Sliders.js │ │ │ ├── Snackbars.js │ │ │ ├── Steppers.js │ │ │ ├── Subheaders.js │ │ │ ├── Tabs.js │ │ │ ├── TextFields.js │ │ │ ├── TimePickers.js │ │ │ ├── Toolbars.js │ │ │ ├── Tooltips.js │ │ │ └── index.js │ │ ├── directives │ │ │ ├── Resizing.js │ │ │ ├── Ripples.js │ │ │ ├── Scrolling.js │ │ │ ├── TouchSupport.js │ │ │ └── index.js │ │ ├── generic │ │ │ ├── Common.js │ │ │ ├── Events.js │ │ │ ├── Pages.js │ │ │ ├── Params.js │ │ │ ├── Props.js │ │ │ ├── Slots.js │ │ │ ├── Types.js │ │ │ └── index.js │ │ ├── getting-started │ │ │ ├── Contributing.js │ │ │ ├── FrequentlyAskedQuestions.js │ │ │ ├── QuickStart.js │ │ │ ├── Roadmap.js │ │ │ ├── SponsorsAndBackers.js │ │ │ ├── WhyVuetify.js │ │ │ └── index.js │ │ ├── guides │ │ │ ├── ALaCarte.js │ │ │ ├── ServerSideRendering.js │ │ │ └── index.js │ │ ├── index.js │ │ ├── layout │ │ │ ├── Alignment.js │ │ │ ├── Display.js │ │ │ ├── Elevation.js │ │ │ ├── PreDefined.js │ │ │ ├── PreMadeThemes.js │ │ │ ├── Sandbox.js │ │ │ ├── Spacing.js │ │ │ └── index.js │ │ ├── meta.js │ │ ├── mixins │ │ │ ├── Applicationable.js │ │ │ ├── Bootable.js │ │ │ ├── Colorable.js │ │ │ ├── DataIterable.js │ │ │ ├── Delayable.js │ │ │ ├── Detachable.js │ │ │ ├── Filterable.js │ │ │ ├── Input.js │ │ │ ├── Loadable.js │ │ │ ├── Menuable.js │ │ │ ├── Picker.js │ │ │ ├── Positionable.js │ │ │ ├── Rippleable.js │ │ │ ├── Routable.js │ │ │ ├── Soloable.js │ │ │ ├── Themeable.js │ │ │ ├── Transitionable.js │ │ │ ├── Validatable.js │ │ │ └── index.js │ │ ├── motion │ │ │ ├── Scrolling.js │ │ │ ├── Transitions.js │ │ │ └── index.js │ │ ├── style │ │ │ ├── Colors.js │ │ │ ├── Content.js │ │ │ ├── Theme.js │ │ │ ├── Typography.js │ │ │ └── index.js │ │ └── vuetify │ │ │ ├── AppDrawer.js │ │ │ ├── Home.js │ │ │ ├── Store.js │ │ │ └── index.js │ ├── ko │ │ ├── additional │ │ │ └── Generator.js │ │ ├── components │ │ │ ├── Alerts.js │ │ │ ├── Avatars.js │ │ │ ├── Badges.js │ │ │ ├── BottomNavigation.js │ │ │ ├── BottomSheets.js │ │ │ ├── Breadcrumbs.js │ │ │ ├── Buttons.js │ │ │ ├── Cards.js │ │ │ ├── Carousels.js │ │ │ ├── Chips.js │ │ │ ├── DataIterator.js │ │ │ ├── DataTables.js │ │ │ ├── DatePickers.js │ │ │ ├── Dialogs.js │ │ │ ├── Dividers.js │ │ │ ├── ExpansionPanels.js │ │ │ ├── FloatingActionButtons.js │ │ │ ├── Footer.js │ │ │ ├── Forms.js │ │ │ ├── HelpMeChoose.js │ │ │ ├── Icons.js │ │ │ ├── Jumbotrons.js │ │ │ ├── Lists.js │ │ │ ├── Menus.js │ │ │ ├── NavigationDrawers.js │ │ │ ├── Paginations.js │ │ │ ├── Parallax.js │ │ │ ├── Progress.js │ │ │ ├── SelectionControls.js │ │ │ ├── Selects.js │ │ │ ├── Sliders.js │ │ │ ├── Snackbars.js │ │ │ ├── Steppers.js │ │ │ ├── Subheaders.js │ │ │ ├── Tabs.js │ │ │ ├── TemplateList.js │ │ │ ├── TextFields.js │ │ │ ├── TimePickers.js │ │ │ ├── Toolbars.js │ │ │ ├── Tooltips.js │ │ │ └── index.js │ │ ├── directives │ │ │ ├── Resizing.js │ │ │ ├── Ripples.js │ │ │ ├── Scrolling.js │ │ │ ├── TouchSupport.js │ │ │ └── index.js │ │ ├── generic │ │ │ ├── Common.js │ │ │ ├── Events.js │ │ │ ├── Pages.js │ │ │ ├── Params.js │ │ │ ├── Props.js │ │ │ ├── Slots.js │ │ │ ├── Types.js │ │ │ └── index.js │ │ ├── getting-started │ │ │ ├── QuickStart.js │ │ │ ├── WhyVuetify.js │ │ │ └── index.js │ │ ├── guides │ │ │ ├── ALaCarte.js │ │ │ ├── ServerSideRendering.js │ │ │ └── index.js │ │ ├── index.js │ │ ├── layout │ │ │ ├── Alignment.js │ │ │ ├── Display.js │ │ │ ├── Elevation.js │ │ │ ├── Grid.js │ │ │ ├── GridLists.js │ │ │ ├── PreDefined.js │ │ │ ├── PreMadeThemes.js │ │ │ ├── Spacing.js │ │ │ └── index.js │ │ ├── meta.js │ │ ├── mixins │ │ │ ├── Applicationable.js │ │ │ ├── Bootable.js │ │ │ ├── Colorable.js │ │ │ ├── DataIterable.js │ │ │ ├── Delayable.js │ │ │ ├── Detachable.js │ │ │ ├── Filterable.js │ │ │ ├── Input.js │ │ │ ├── Loadable.js │ │ │ ├── Menuable.js │ │ │ ├── Picker.js │ │ │ ├── Positionable.js │ │ │ ├── Rippleable.js │ │ │ ├── Routable.js │ │ │ ├── Soloable.js │ │ │ ├── Themeable.js │ │ │ ├── Transitionable.js │ │ │ ├── Validatable.js │ │ │ └── index.js │ │ ├── motion │ │ │ ├── Scrolling.js │ │ │ ├── Transitions.js │ │ │ └── index.js │ │ ├── style │ │ │ ├── Colors.js │ │ │ ├── Content.js │ │ │ ├── Theme.js │ │ │ ├── Typography.js │ │ │ └── index.js │ │ └── vuetify │ │ │ ├── AppDrawer.js │ │ │ ├── AppToolbar.js │ │ │ ├── Home.js │ │ │ ├── Store.js │ │ │ └── index.js │ ├── ru │ │ ├── additional │ │ │ └── Generator.js │ │ ├── components │ │ │ ├── Alerts.js │ │ │ ├── Avatars.js │ │ │ ├── Badges.js │ │ │ ├── BottomNavigation.js │ │ │ ├── BottomSheets.js │ │ │ ├── Breadcrumbs.js │ │ │ ├── Buttons.js │ │ │ ├── Cards.js │ │ │ ├── Carousels.js │ │ │ ├── Chips.js │ │ │ ├── DataIterator.js │ │ │ ├── DataTables.js │ │ │ ├── DatePickers.js │ │ │ ├── Dialogs.js │ │ │ ├── Dividers.js │ │ │ ├── ExpansionPanels.js │ │ │ ├── FloatingActionButtons.js │ │ │ ├── Footer.js │ │ │ ├── Forms.js │ │ │ ├── Icons.js │ │ │ ├── Jumbotrons.js │ │ │ ├── Lists.js │ │ │ ├── Menus.js │ │ │ ├── NavigationDrawers.js │ │ │ ├── Paginations.js │ │ │ ├── Parallax.js │ │ │ ├── Progress.js │ │ │ ├── SelectionControls.js │ │ │ ├── Selects.js │ │ │ ├── Sliders.js │ │ │ ├── Snackbars.js │ │ │ ├── Steppers.js │ │ │ ├── Subheaders.js │ │ │ ├── Tabs.js │ │ │ ├── TextFields.js │ │ │ ├── TimePickers.js │ │ │ ├── Toolbars.js │ │ │ ├── Tooltips.js │ │ │ └── index.js │ │ ├── directives │ │ │ ├── Resizing.js │ │ │ ├── Ripples.js │ │ │ ├── Scrolling.js │ │ │ ├── TouchSupport.js │ │ │ └── index.js │ │ ├── generic │ │ │ ├── Events.js │ │ │ ├── Pages.js │ │ │ ├── Params.js │ │ │ ├── Props.js │ │ │ ├── Slots.js │ │ │ ├── Types.js │ │ │ └── index.js │ │ ├── getting-started │ │ │ ├── Contributing.js │ │ │ ├── FrequentlyAskedQuestions.js │ │ │ ├── QuickStart.js │ │ │ ├── Roadmap.js │ │ │ ├── SponsorsAndBackers.js │ │ │ ├── WhyVuetify.js │ │ │ └── index.js │ │ ├── guides │ │ │ ├── ALaCarte.js │ │ │ ├── ServerSideRendering.js │ │ │ └── index.js │ │ ├── index.js │ │ ├── layout │ │ │ ├── Alignment.js │ │ │ ├── Display.js │ │ │ ├── Elevation.js │ │ │ ├── Grid.js │ │ │ ├── GridLists.js │ │ │ ├── PreDefined.js │ │ │ ├── PreMadeThemes.js │ │ │ ├── Sandbox.js │ │ │ ├── Spacing.js │ │ │ └── index.js │ │ ├── mixins │ │ │ ├── Applicationable.js │ │ │ ├── Bootable.js │ │ │ ├── Colorable.js │ │ │ ├── DataIterable.js │ │ │ ├── Delayable.js │ │ │ ├── Detachable.js │ │ │ ├── Filterable.js │ │ │ ├── Input.js │ │ │ ├── Loadable.js │ │ │ ├── Menuable.js │ │ │ ├── Picker.js │ │ │ ├── Positionable.js │ │ │ ├── Rippleable.js │ │ │ ├── Routable.js │ │ │ ├── Soloable.js │ │ │ ├── Themeable.js │ │ │ ├── Transitionable.js │ │ │ ├── Validatable.js │ │ │ └── index.js │ │ ├── motion │ │ │ ├── Transitions.js │ │ │ └── index.js │ │ ├── style │ │ │ ├── Colors.js │ │ │ ├── Content.js │ │ │ ├── Theme.js │ │ │ ├── Typography.js │ │ │ └── index.js │ │ └── vuetify │ │ │ ├── Home.js │ │ │ └── index.js │ └── zhHans │ │ ├── additional │ │ └── Generator.js │ │ ├── components │ │ ├── Alerts.js │ │ ├── Avatars.js │ │ ├── Badges.js │ │ ├── BottomNavigation.js │ │ ├── BottomSheets.js │ │ ├── Breadcrumbs.js │ │ ├── Buttons.js │ │ ├── Cards.js │ │ ├── Carousels.js │ │ ├── Chips.js │ │ ├── DataIterator.js │ │ ├── DataTables.js │ │ ├── Dialogs.js │ │ ├── Dividers.js │ │ ├── ExpansionPanels.js │ │ ├── FloatingActionButtons.js │ │ ├── Footer.js │ │ ├── Forms.js │ │ ├── Icons.js │ │ ├── Lists.js │ │ ├── Menus.js │ │ ├── NavigationDrawers.js │ │ ├── Paginations.js │ │ ├── Parallax.js │ │ ├── Progress.js │ │ ├── SelectionControls.js │ │ ├── Selects.js │ │ ├── Sliders.js │ │ ├── Snackbars.js │ │ ├── Steppers.js │ │ ├── Subheaders.js │ │ ├── Tabs.js │ │ ├── TextFields.js │ │ ├── Toolbars.js │ │ ├── Tooltips.js │ │ └── index.js │ │ ├── directives │ │ ├── Resizing.js │ │ ├── Ripples.js │ │ ├── Scrolling.js │ │ ├── TouchSupport.js │ │ └── index.js │ │ ├── generic │ │ ├── Events.js │ │ ├── Pages.js │ │ ├── Params.js │ │ ├── Props.js │ │ ├── Slots.js │ │ ├── Types.js │ │ └── index.js │ │ ├── getting-started │ │ ├── Contributing.js │ │ ├── FrequentlyAskedQuestions.js │ │ ├── QuickStart.js │ │ ├── Roadmap.js │ │ ├── SponsorsAndBackers.js │ │ ├── WhyVuetify.js │ │ └── index.js │ │ ├── guides │ │ ├── ALaCarte.js │ │ ├── ServerSideRendering.js │ │ └── index.js │ │ ├── index.js │ │ ├── layout │ │ ├── Alignment.js │ │ ├── Display.js │ │ ├── Elevation.js │ │ ├── Grid.js │ │ ├── GridLists.js │ │ ├── PreDefined.js │ │ ├── PreMadeThemes.js │ │ ├── Sandbox.js │ │ ├── Spacing.js │ │ └── index.js │ │ ├── mixins │ │ ├── Applicationable.js │ │ ├── Bootable.js │ │ ├── Colorable.js │ │ ├── DataIterable.js │ │ ├── Delayable.js │ │ ├── Detachable.js │ │ ├── Filterable.js │ │ ├── Input.js │ │ ├── Loadable.js │ │ ├── Menuable.js │ │ ├── Picker.js │ │ ├── Positionable.js │ │ ├── Rippleable.js │ │ ├── Routable.js │ │ ├── Soloable.js │ │ ├── Themeable.js │ │ ├── Transitionable.js │ │ ├── Validatable.js │ │ └── index.js │ │ ├── motion │ │ ├── Transitions.js │ │ └── index.js │ │ ├── style │ │ ├── Colors.js │ │ ├── Content.js │ │ ├── Theme.js │ │ ├── Typography.js │ │ └── index.js │ │ └── vuetify │ │ ├── Home.js │ │ └── index.js ├── mixins │ ├── message.js │ ├── meta.js │ └── snackbar.js ├── pages │ ├── HomePage.vue │ ├── ThemeGeneratorPage.vue │ ├── components │ │ ├── DocPage.vue │ │ └── GridPage.vue │ ├── directives │ │ └── TouchPage.vue │ ├── examples │ │ └── ExamplePage.vue │ ├── general │ │ └── 404Page.vue │ ├── getting-started │ │ ├── ContributingPage.vue │ │ ├── FrequentlyAskedQuestionsPage.vue │ │ ├── QuickStartPage.vue │ │ ├── RoadmapPage.vue │ │ ├── SponsorsAndBackersPage.vue │ │ └── WhyVuetifyPage.vue │ ├── guides │ │ ├── ALaCartePage.vue │ │ └── SSRPage.vue │ ├── layout │ │ ├── AlignmentPage.vue │ │ ├── DisplayPage.vue │ │ ├── ElevationPage.vue │ │ ├── GridListsPage.vue │ │ ├── GridPage.vue │ │ ├── PreDefinedPage.vue │ │ ├── PreMadeThemesPage.vue │ │ ├── SandboxPage.vue │ │ └── SpacingPage.vue │ ├── motion │ │ ├── ScrollingPage.vue │ │ └── TransitionsPage.vue │ ├── store │ │ ├── CartPage.vue │ │ ├── IndexPage.vue │ │ ├── LicensingPage.vue │ │ ├── ProductPage.vue │ │ └── ThankYouPage.vue │ └── style │ │ ├── ColorsPage.vue │ │ ├── ContentPage.vue │ │ ├── ThemePage.vue │ │ └── TypographyPage.vue ├── releases │ ├── 0.15 │ │ ├── examples │ │ │ ├── alerts │ │ │ │ ├── 1.vue │ │ │ │ ├── 2.vue │ │ │ │ ├── 3.vue │ │ │ │ ├── 4.vue │ │ │ │ └── example.vue │ │ │ ├── alignment │ │ │ │ └── 1.vue │ │ │ ├── avatars │ │ │ │ ├── 1.vue │ │ │ │ ├── 2.vue │ │ │ │ └── 3.vue │ │ │ ├── badges │ │ │ │ ├── 1.vue │ │ │ │ ├── 2.vue │ │ │ │ ├── 3.vue │ │ │ │ └── 4.vue │ │ │ ├── bottom-navigation │ │ │ │ ├── 1.vue │ │ │ │ ├── 2.vue │ │ │ │ └── 3.vue │ │ │ ├── bottom-sheets │ │ │ │ ├── 1.vue │ │ │ │ └── 2.vue │ │ │ ├── breadcrumbs │ │ │ │ ├── 1.vue │ │ │ │ └── 2.vue │ │ │ ├── buttons │ │ │ │ ├── 1.vue │ │ │ │ ├── 10.vue │ │ │ │ ├── 11.vue │ │ │ │ ├── 12.vue │ │ │ │ ├── 13.vue │ │ │ │ ├── 2.vue │ │ │ │ ├── 3.vue │ │ │ │ ├── 4.vue │ │ │ │ ├── 5.vue │ │ │ │ ├── 6.vue │ │ │ │ ├── 7.vue │ │ │ │ ├── 8.vue │ │ │ │ └── 9.vue │ │ │ ├── cards │ │ │ │ ├── 1.vue │ │ │ │ ├── 2.vue │ │ │ │ ├── 3.vue │ │ │ │ ├── 4.vue │ │ │ │ ├── 5.vue │ │ │ │ ├── 6.vue │ │ │ │ └── 7.vue │ │ │ ├── carousel │ │ │ │ ├── 1.vue │ │ │ │ ├── 2.vue │ │ │ │ ├── 3.vue │ │ │ │ └── 4.vue │ │ │ ├── chips │ │ │ │ ├── 1.vue │ │ │ │ ├── 2.vue │ │ │ │ ├── 3.vue │ │ │ │ ├── 4.vue │ │ │ │ ├── 5.vue │ │ │ │ ├── 6.vue │ │ │ │ └── 7.vue │ │ │ ├── content │ │ │ │ ├── 1.vue │ │ │ │ ├── 2.vue │ │ │ │ ├── 3.vue │ │ │ │ ├── 4.vue │ │ │ │ └── 5.vue │ │ │ ├── dialogs │ │ │ │ ├── 1.vue │ │ │ │ ├── 2.vue │ │ │ │ ├── 3.vue │ │ │ │ ├── 4.vue │ │ │ │ ├── 5.vue │ │ │ │ ├── 6.vue │ │ │ │ └── 7.vue │ │ │ ├── display │ │ │ │ └── 1.vue │ │ │ ├── dividers │ │ │ │ ├── 1.vue │ │ │ │ ├── 2.vue │ │ │ │ ├── 3.vue │ │ │ │ └── 4.vue │ │ │ ├── elevation │ │ │ │ └── 1.html │ │ │ ├── expansion-panel │ │ │ │ ├── 1.vue │ │ │ │ ├── 2.vue │ │ │ │ ├── 3.vue │ │ │ │ └── 4.vue │ │ │ ├── fabs │ │ │ │ ├── 1.vue │ │ │ │ ├── 2.vue │ │ │ │ ├── 3.vue │ │ │ │ ├── 4.vue │ │ │ │ └── 5.vue │ │ │ ├── footer │ │ │ │ └── 1.vue │ │ │ ├── forms │ │ │ │ ├── 1.vue │ │ │ │ ├── 2.vue │ │ │ │ ├── 3.vue │ │ │ │ └── 4.vue │ │ │ ├── grid-lists │ │ │ │ ├── 1.vue │ │ │ │ └── 2.vue │ │ │ ├── grid │ │ │ │ ├── 1.vue │ │ │ │ ├── 2.vue │ │ │ │ ├── 3.vue │ │ │ │ ├── 4.vue │ │ │ │ ├── 5.vue │ │ │ │ ├── 6.vue │ │ │ │ └── 7.vue │ │ │ ├── icons │ │ │ │ ├── 1.vue │ │ │ │ ├── 2.vue │ │ │ │ ├── 3.vue │ │ │ │ ├── 4.vue │ │ │ │ └── 5.vue │ │ │ ├── layouts │ │ │ │ ├── 1.vue │ │ │ │ ├── 2.vue │ │ │ │ ├── 3.vue │ │ │ │ ├── 4.vue │ │ │ │ ├── 5.vue │ │ │ │ ├── 6.vue │ │ │ │ ├── 7.vue │ │ │ │ ├── 8.vue │ │ │ │ └── 9.vue │ │ │ ├── lists │ │ │ │ ├── 1.vue │ │ │ │ ├── 10.vue │ │ │ │ ├── 11.vue │ │ │ │ ├── 2.vue │ │ │ │ ├── 3.vue │ │ │ │ ├── 4.vue │ │ │ │ ├── 5.vue │ │ │ │ ├── 6.vue │ │ │ │ ├── 7.vue │ │ │ │ ├── 8.vue │ │ │ │ └── 9.vue │ │ │ ├── menus │ │ │ │ ├── 1.vue │ │ │ │ ├── 2.vue │ │ │ │ ├── 3.vue │ │ │ │ ├── 4.vue │ │ │ │ ├── 5.vue │ │ │ │ ├── 6.vue │ │ │ │ └── 7.vue │ │ │ ├── navigation-drawers │ │ │ │ ├── 1.vue │ │ │ │ ├── 2.vue │ │ │ │ ├── 3.vue │ │ │ │ ├── 4.vue │ │ │ │ ├── 5.vue │ │ │ │ ├── 6.vue │ │ │ │ ├── 7.vue │ │ │ │ ├── 8.vue │ │ │ │ └── 9.vue │ │ │ ├── pagination │ │ │ │ ├── 1.vue │ │ │ │ ├── 2.vue │ │ │ │ ├── 3.vue │ │ │ │ ├── 4.vue │ │ │ │ └── 5.vue │ │ │ ├── parallax │ │ │ │ ├── 1.vue │ │ │ │ ├── 2.vue │ │ │ │ ├── 3.vue │ │ │ │ └── 4.vue │ │ │ ├── pickers │ │ │ │ ├── 1.vue │ │ │ │ ├── 10.vue │ │ │ │ ├── 11.vue │ │ │ │ ├── 12.vue │ │ │ │ ├── 13.vue │ │ │ │ ├── 2.vue │ │ │ │ ├── 3.vue │ │ │ │ ├── 4.vue │ │ │ │ ├── 5.vue │ │ │ │ ├── 6.vue │ │ │ │ └── 7.vue │ │ │ ├── progress-circular │ │ │ │ ├── 1.vue │ │ │ │ ├── 2.vue │ │ │ │ ├── 3.vue │ │ │ │ ├── 4.vue │ │ │ │ └── 5.vue │ │ │ ├── progress-linear │ │ │ │ ├── 1.vue │ │ │ │ ├── 2.vue │ │ │ │ ├── 3.vue │ │ │ │ ├── 4.vue │ │ │ │ ├── 5.vue │ │ │ │ └── 6.vue │ │ │ ├── resize │ │ │ │ └── 1.vue │ │ │ ├── ripples │ │ │ │ ├── 1.vue │ │ │ │ ├── 2.vue │ │ │ │ ├── 3.vue │ │ │ │ ├── 4.vue │ │ │ │ ├── 5.vue │ │ │ │ └── 6.vue │ │ │ ├── sandbox │ │ │ │ └── 1.vue │ │ │ ├── scroll │ │ │ │ ├── 1.vue │ │ │ │ └── 2.vue │ │ │ ├── selection-controls │ │ │ │ ├── 1.vue │ │ │ │ ├── 10.vue │ │ │ │ ├── 11.vue │ │ │ │ ├── 2.vue │ │ │ │ ├── 3.vue │ │ │ │ ├── 4.vue │ │ │ │ ├── 5.vue │ │ │ │ ├── 6.vue │ │ │ │ ├── 7.vue │ │ │ │ ├── 8.vue │ │ │ │ └── 9.vue │ │ │ ├── selects │ │ │ │ ├── 1.vue │ │ │ │ ├── 2.vue │ │ │ │ ├── 3.vue │ │ │ │ ├── 4.vue │ │ │ │ ├── 5.vue │ │ │ │ ├── 6.vue │ │ │ │ ├── 7.vue │ │ │ │ ├── 8.vue │ │ │ │ └── 9.vue │ │ │ ├── sliders │ │ │ │ ├── 1.vue │ │ │ │ ├── 2.vue │ │ │ │ ├── 3.vue │ │ │ │ ├── 4.vue │ │ │ │ ├── 5.vue │ │ │ │ └── 6.html │ │ │ ├── snackbars │ │ │ │ ├── 1.vue │ │ │ │ └── 2.vue │ │ │ ├── steppers │ │ │ │ ├── 1.vue │ │ │ │ ├── 10.vue │ │ │ │ ├── 11.vue │ │ │ │ ├── 12.vue │ │ │ │ ├── 13.vue │ │ │ │ ├── 2.vue │ │ │ │ ├── 3.vue │ │ │ │ ├── 4.vue │ │ │ │ ├── 5.vue │ │ │ │ ├── 6.vue │ │ │ │ ├── 7.vue │ │ │ │ ├── 8.vue │ │ │ │ └── 9.vue │ │ │ ├── subheaders │ │ │ │ ├── 1.vue │ │ │ │ ├── 2.vue │ │ │ │ └── 3.vue │ │ │ ├── tables │ │ │ │ ├── 1.vue │ │ │ │ ├── 10.vue │ │ │ │ ├── 2.vue │ │ │ │ ├── 3.vue │ │ │ │ ├── 4.vue │ │ │ │ ├── 5.vue │ │ │ │ ├── 6.vue │ │ │ │ ├── 7.vue │ │ │ │ ├── 8.vue │ │ │ │ └── 9.vue │ │ │ ├── tabs │ │ │ │ ├── 1.vue │ │ │ │ ├── 2.vue │ │ │ │ ├── 3.vue │ │ │ │ ├── 4.vue │ │ │ │ ├── 5.vue │ │ │ │ ├── 6.vue │ │ │ │ ├── 7.vue │ │ │ │ ├── 8.vue │ │ │ │ └── 9.vue │ │ │ ├── text-fields │ │ │ │ ├── 1.vue │ │ │ │ ├── 10.vue │ │ │ │ ├── 11.vue │ │ │ │ ├── 12.vue │ │ │ │ ├── 13.vue │ │ │ │ ├── 14.vue │ │ │ │ ├── 15.vue │ │ │ │ ├── 16.vue │ │ │ │ ├── 17.vue │ │ │ │ ├── 18.vue │ │ │ │ ├── 2.vue │ │ │ │ ├── 3.vue │ │ │ │ ├── 4.vue │ │ │ │ ├── 5.vue │ │ │ │ ├── 6.vue │ │ │ │ ├── 7.vue │ │ │ │ ├── 8.vue │ │ │ │ └── 9.vue │ │ │ ├── toolbar │ │ │ │ ├── 1.vue │ │ │ │ ├── 10.vue │ │ │ │ ├── 11.vue │ │ │ │ ├── 12.vue │ │ │ │ ├── 13.vue │ │ │ │ ├── 14.vue │ │ │ │ ├── 2.vue │ │ │ │ ├── 3.vue │ │ │ │ ├── 4.vue │ │ │ │ ├── 5.vue │ │ │ │ ├── 6.vue │ │ │ │ ├── 7.vue │ │ │ │ ├── 8.vue │ │ │ │ └── 9.vue │ │ │ ├── tooltips │ │ │ │ ├── 1.vue │ │ │ │ └── 2.vue │ │ │ ├── touch │ │ │ │ └── 1.vue │ │ │ └── transitions │ │ │ │ ├── 1.vue │ │ │ │ ├── 2.vue │ │ │ │ ├── 3.vue │ │ │ │ ├── 4.vue │ │ │ │ └── 5.vue │ │ ├── index.html │ │ ├── pages │ │ │ ├── ALaCarteView.vue │ │ │ ├── AlertsView.vue │ │ │ ├── AlignmentView.vue │ │ │ ├── AvatarsView.vue │ │ │ ├── BadgesView.vue │ │ │ ├── BottomNavigationView.vue │ │ │ ├── BottomSheetsView.vue │ │ │ ├── BreadcrumbsView.vue │ │ │ ├── ButtonsView.vue │ │ │ ├── CardsView.vue │ │ │ ├── CarouselView.vue │ │ │ ├── ChipsView.vue │ │ │ ├── ColorsView.vue │ │ │ ├── ContentView.vue │ │ │ ├── ContributingView.vue │ │ │ ├── DatatablesView.vue │ │ │ ├── DepthView.vue │ │ │ ├── DialogsView.vue │ │ │ ├── DisplayView.vue │ │ │ ├── DividerView.vue │ │ │ ├── ElevationView.vue │ │ │ ├── ExpansionPanelView.vue │ │ │ ├── FabsView.vue │ │ │ ├── FaqView.vue │ │ │ ├── FooterView.vue │ │ │ ├── FormsView.vue │ │ │ ├── GridListView.vue │ │ │ ├── GridView.vue │ │ │ ├── HomeView.vue │ │ │ ├── IconView.vue │ │ │ ├── LayoutsView.vue │ │ │ ├── ListsView.vue │ │ │ ├── MenusView.vue │ │ │ ├── NavigationDrawerView.vue │ │ │ ├── PaginationView.vue │ │ │ ├── ParallaxView.vue │ │ │ ├── PickersView.vue │ │ │ ├── PremadeThemesView.vue │ │ │ ├── ProgressView.vue │ │ │ ├── QuickStartView.vue │ │ │ ├── ResizeView.vue │ │ │ ├── RipplesView.vue │ │ │ ├── RoadmapView.vue │ │ │ ├── SSRView.vue │ │ │ ├── SandboxView.vue │ │ │ ├── ScrollView.vue │ │ │ ├── SelectView.vue │ │ │ ├── SelectionControlsView.vue │ │ │ ├── SliderView.vue │ │ │ ├── SnackbarView.vue │ │ │ ├── SpacingView.vue │ │ │ ├── SponsorsView.vue │ │ │ ├── SteppersView.vue │ │ │ ├── SubheaderView.vue │ │ │ ├── TabsView.vue │ │ │ ├── TextFieldsView.vue │ │ │ ├── ThemeView.vue │ │ │ ├── ToolbarsView.vue │ │ │ ├── TooltipsView.vue │ │ │ ├── TouchView.vue │ │ │ ├── TransitionsView.vue │ │ │ ├── TypographyView.vue │ │ │ ├── WhyView.vue │ │ │ └── i18n │ │ │ │ └── Layout │ │ │ │ └── en.js │ │ └── static │ │ │ ├── android-chrome-192x192.png │ │ │ ├── android-chrome-512x512.png │ │ │ ├── apple-touch-icon-114x114.png │ │ │ ├── apple-touch-icon-120x120.png │ │ │ ├── apple-touch-icon-144x144.png │ │ │ ├── apple-touch-icon-152x152.png │ │ │ ├── apple-touch-icon-180x180.png │ │ │ ├── apple-touch-icon-57x57.png │ │ │ ├── apple-touch-icon-60x60.png │ │ │ ├── apple-touch-icon-72x72.png │ │ │ ├── apple-touch-icon-76x76.png │ │ │ ├── apple-touch-icon.png │ │ │ ├── browserconfig.xml │ │ │ ├── doc-images │ │ │ ├── backers │ │ │ │ ├── cocoatechlogo.png │ │ │ │ ├── cycloid.png │ │ │ │ ├── deister-logo-light.png │ │ │ │ ├── deister-software.png │ │ │ │ └── lmax-exchange.png │ │ │ ├── bg-2.jpg │ │ │ ├── bg.jpg │ │ │ ├── bottom-sheets │ │ │ │ ├── google.png │ │ │ │ ├── hangouts.png │ │ │ │ ├── inbox.png │ │ │ │ ├── keep.png │ │ │ │ └── messenger.png │ │ │ ├── browser-stack.png │ │ │ ├── browser-stack.svg │ │ │ ├── cards │ │ │ │ ├── desert.jpg │ │ │ │ ├── docks.jpg │ │ │ │ ├── drop.jpg │ │ │ │ ├── foster.jpg │ │ │ │ ├── girl.jpg │ │ │ │ ├── halcyon.png │ │ │ │ ├── hotel.jpg │ │ │ │ ├── house.jpg │ │ │ │ ├── nature.jpg │ │ │ │ ├── plane.jpg │ │ │ │ ├── road.jpg │ │ │ │ ├── space.jpg │ │ │ │ ├── store.jpg │ │ │ │ └── sunshine.jpg │ │ │ ├── carousel │ │ │ │ ├── bird.jpg │ │ │ │ ├── planet.jpg │ │ │ │ ├── sky.jpg │ │ │ │ └── squirrel.jpg │ │ │ ├── cloudflare.svg │ │ │ ├── feature1.svg │ │ │ ├── feature2.svg │ │ │ ├── feature3.svg │ │ │ ├── featured.png │ │ │ ├── header-logo.svg │ │ │ ├── hero_bg.png │ │ │ ├── john.jpg │ │ │ ├── lists │ │ │ │ ├── 1.jpg │ │ │ │ ├── 2.jpg │ │ │ │ ├── 3.jpg │ │ │ │ ├── 4.jpg │ │ │ │ ├── 5.jpg │ │ │ │ └── alison.jpeg │ │ │ ├── logo.svg │ │ │ ├── md.jpg │ │ │ ├── md2.jpg │ │ │ ├── nature.jpg │ │ │ ├── parallax │ │ │ │ ├── cosmos.jpg │ │ │ │ ├── material.jpg │ │ │ │ └── material2.jpg │ │ │ ├── patreon.png │ │ │ ├── paypal.png │ │ │ ├── save │ │ │ │ ├── bg-2.jpg │ │ │ │ ├── hero_bg.png │ │ │ │ ├── md.jpg │ │ │ │ ├── md2.jpg │ │ │ │ ├── nature.jpg │ │ │ │ └── vbanner.jpg │ │ │ ├── slant-footer.svg │ │ │ ├── slant-header.svg │ │ │ ├── slant-repeat.svg │ │ │ ├── starter │ │ │ │ ├── vuetify-blog-starter.png │ │ │ │ ├── vuetify-parallax-starter.png │ │ │ │ └── vuetify-premium.jpg │ │ │ ├── toolbar │ │ │ │ └── map.jpg │ │ │ └── vbanner.jpg │ │ │ ├── duck.png │ │ │ ├── facebook.png │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── favicon.ico │ │ │ ├── github.png │ │ │ ├── mail.png │ │ │ ├── manifest.json │ │ │ ├── mstile-144x144.png │ │ │ ├── mstile-150x150.png │ │ │ ├── mstile-310x150.png │ │ │ ├── mstile-310x310.png │ │ │ ├── mstile-70x70.png │ │ │ ├── robots.txt │ │ │ ├── safari-pinned-tab.svg │ │ │ ├── sitemap.xml │ │ │ ├── twitter.png │ │ │ ├── v.png │ │ │ ├── vuetify_cli.svg │ │ │ ├── vuetify_layout1.svg │ │ │ ├── vuetify_layout2.svg │ │ │ ├── vuetify_semantic.svg │ │ │ └── vuetify_sizes.svg │ ├── 0.16 │ │ ├── examples │ │ │ ├── alerts │ │ │ │ ├── closable.vue │ │ │ │ ├── contextual.vue │ │ │ │ ├── example.vue │ │ │ │ ├── icon.vue │ │ │ │ ├── outline.vue │ │ │ │ └── transition.vue │ │ │ ├── alignment │ │ │ │ └── text.vue │ │ │ ├── avatars │ │ │ │ ├── advanced.vue │ │ │ │ ├── icon-and-text.vue │ │ │ │ └── standard.vue │ │ │ ├── badges │ │ │ │ ├── character.vue │ │ │ │ ├── icon.vue │ │ │ │ ├── inline.vue │ │ │ │ └── visibility.vue │ │ │ ├── bottom-navigation │ │ │ │ ├── color-and-shift.vue │ │ │ │ ├── icons-and-text.vue │ │ │ │ └── toggle.vue │ │ │ ├── bottom-sheets │ │ │ │ ├── inset.vue │ │ │ │ └── standard.vue │ │ │ ├── breadcrumbs │ │ │ │ ├── icon-dividers.vue │ │ │ │ └── text-dividers.vue │ │ │ ├── buttons │ │ │ │ ├── app-bar.vue │ │ │ │ ├── block.vue │ │ │ │ ├── dropdown.vue │ │ │ │ ├── flat.vue │ │ │ │ ├── floating.vue │ │ │ │ ├── icon.vue │ │ │ │ ├── loaders.vue │ │ │ │ ├── outline.vue │ │ │ │ ├── raised.vue │ │ │ │ ├── round.vue │ │ │ │ ├── sizing.vue │ │ │ │ └── toggle.vue │ │ │ ├── cards │ │ │ │ ├── components.vue │ │ │ │ ├── custom-actions.vue │ │ │ │ ├── grids.vue │ │ │ │ ├── horizontal.vue │ │ │ │ └── media-with-text.vue │ │ │ ├── carousel │ │ │ │ ├── custom-delimiter.vue │ │ │ │ ├── custom-transition.vue │ │ │ │ ├── default.vue │ │ │ │ └── hide-controls.vue │ │ │ ├── chips │ │ │ │ ├── closable.vue │ │ │ │ ├── colored.vue │ │ │ │ ├── default.vue │ │ │ │ ├── icon.vue │ │ │ │ ├── in-selects.vue │ │ │ │ ├── label.vue │ │ │ │ └── outline.vue │ │ │ ├── dialogs │ │ │ │ ├── form.vue │ │ │ │ ├── fullscreen.vue │ │ │ │ ├── modal.vue │ │ │ │ ├── overflowed.vue │ │ │ │ ├── scrollable.vue │ │ │ │ ├── simple.vue │ │ │ │ └── without-activator.vue │ │ │ ├── display │ │ │ │ └── hidden-elements.vue │ │ │ ├── dividers │ │ │ │ ├── full-bleed.vue │ │ │ │ ├── inset.vue │ │ │ │ ├── light-and-dark.vue │ │ │ │ └── subheaders.vue │ │ │ ├── expansion-panel │ │ │ │ ├── accordion.vue │ │ │ │ ├── expand.vue │ │ │ │ ├── focusable.vue │ │ │ │ └── popout.vue │ │ │ ├── fabs │ │ │ │ ├── display-animation.vue │ │ │ │ ├── lateral-screens.vue │ │ │ │ ├── promoted-action.vue │ │ │ │ ├── small.vue │ │ │ │ └── speed-dial.vue │ │ │ ├── footer │ │ │ │ └── default.vue │ │ │ ├── forms │ │ │ │ ├── basic-validation.vue │ │ │ │ ├── validation-with-submit-and-clear.vue │ │ │ │ ├── vee-validate.vue │ │ │ │ └── vuelidate.vue │ │ │ ├── grid-lists │ │ │ │ ├── default.vue │ │ │ │ └── subheader.vue │ │ │ ├── grid │ │ │ │ ├── direction-and-align.vue │ │ │ │ ├── grid.vue │ │ │ │ ├── nested-grid.vue │ │ │ │ ├── offset.vue │ │ │ │ ├── order.vue │ │ │ │ ├── row-column-breakpoint.vue │ │ │ │ ├── tags.vue │ │ │ │ └── unique-layouts.vue │ │ │ ├── icons │ │ │ │ ├── buttons.vue │ │ │ │ ├── color.vue │ │ │ │ ├── font-awesome.vue │ │ │ │ ├── mdi.vue │ │ │ │ └── standard.vue │ │ │ ├── layouts │ │ │ │ ├── baseline-flipped.vue │ │ │ │ ├── baseline.vue │ │ │ │ ├── complex.vue │ │ │ │ ├── dark.vue │ │ │ │ ├── google-contacts.vue │ │ │ │ ├── google-keep.vue │ │ │ │ ├── google-youtube.vue │ │ │ │ └── sandbox.vue │ │ │ ├── lists │ │ │ │ ├── action-with-title-and-subtitle.vue │ │ │ │ ├── avatar-subheader-title-and-action.vue │ │ │ │ ├── avatar-three-lines.vue │ │ │ │ ├── avatar-title-and-action.vue │ │ │ │ ├── avatar-two-lines.vue │ │ │ │ ├── card-list.vue │ │ │ │ ├── dark.vue │ │ │ │ ├── expansion-lists.vue │ │ │ │ ├── icon-two-lines-and-action.vue │ │ │ │ ├── subheadings-and-dividers.vue │ │ │ │ └── title-subtitle-actions-and-action-text.vue │ │ │ ├── menus │ │ │ │ ├── absolute-without-activator.vue │ │ │ │ ├── absolute.vue │ │ │ │ ├── activator.vue │ │ │ │ ├── custom-transition.vue │ │ │ │ ├── hover.vue │ │ │ │ ├── menus.vue │ │ │ │ └── popover.vue │ │ │ ├── navigation-drawers │ │ │ │ ├── dark.vue │ │ │ │ ├── mini.vue │ │ │ │ ├── permanent-clipped.vue │ │ │ │ ├── permanent-floating-card.vue │ │ │ │ ├── permanent-floating.vue │ │ │ │ ├── permanent.vue │ │ │ │ ├── persistent.vue │ │ │ │ └── temporary.vue │ │ │ ├── pagination │ │ │ │ ├── disabled.vue │ │ │ │ ├── limit.vue │ │ │ │ ├── long.vue │ │ │ │ ├── round.vue │ │ │ │ └── short.vue │ │ │ ├── parallax │ │ │ │ ├── content.vue │ │ │ │ ├── custom-height.vue │ │ │ │ ├── default.vue │ │ │ │ └── jumbotron.vue │ │ │ ├── pickers │ │ │ │ ├── date-allowed-dates.vue │ │ │ │ ├── date-colorable.vue │ │ │ │ ├── date-dark.vue │ │ │ │ ├── date-dialog-and-menu.vue │ │ │ │ ├── date-internationalization.vue │ │ │ │ ├── date-light.vue │ │ │ │ ├── month-allowed-months.vue │ │ │ │ ├── month-colorable.vue │ │ │ │ ├── month-dark.vue │ │ │ │ ├── month-dialog-and-menu.vue │ │ │ │ ├── month-internationalization.vue │ │ │ │ ├── month-light.vue │ │ │ │ ├── time-24h-format.vue │ │ │ │ ├── time-allowed-times.vue │ │ │ │ ├── time-colorable.vue │ │ │ │ ├── time-dark.vue │ │ │ │ ├── time-dialog-and-menu.vue │ │ │ │ └── time-light.vue │ │ │ ├── progress-circular │ │ │ │ ├── colored.vue │ │ │ │ ├── default.vue │ │ │ │ ├── indeterminate.vue │ │ │ │ ├── rotate.vue │ │ │ │ └── size-and-width.vue │ │ │ ├── progress-linear │ │ │ │ ├── buffer.vue │ │ │ │ ├── custom-colors.vue │ │ │ │ ├── custom-height-and-contextual-colors.vue │ │ │ │ ├── determinate.vue │ │ │ │ ├── indeterminate.vue │ │ │ │ └── query-indeterminate-and-determinate.vue │ │ │ ├── resize │ │ │ │ └── default.vue │ │ │ ├── ripples │ │ │ │ ├── buttons.vue │ │ │ │ ├── custom-color.vue │ │ │ │ ├── expansion-panels.vue │ │ │ │ ├── html-element.vue │ │ │ │ ├── navigation-drawers.vue │ │ │ │ ├── tabs.vue │ │ │ │ └── toolbars.vue │ │ │ ├── scroll │ │ │ │ ├── default.vue │ │ │ │ └── options.vue │ │ │ ├── selection-controls │ │ │ │ ├── checkboxes-array.vue │ │ │ │ ├── checkboxes-boolean.vue │ │ │ │ ├── checkboxes-colors.vue │ │ │ │ ├── checkboxes-states.vue │ │ │ │ ├── radios-colors.vue │ │ │ │ ├── radios-default.vue │ │ │ │ ├── radios-direction.vue │ │ │ │ ├── switches-array.vue │ │ │ │ ├── switches-boolean.vue │ │ │ │ ├── switches-colors.vue │ │ │ │ └── switches-states.vue │ │ │ ├── selects │ │ │ │ ├── asynchronous.vue │ │ │ │ ├── autocomplete.vue │ │ │ │ ├── combobox.vue │ │ │ │ ├── custom-text-and-value.vue │ │ │ │ ├── dark.vue │ │ │ │ ├── icons.vue │ │ │ │ ├── light.vue │ │ │ │ ├── multiple.vue │ │ │ │ ├── scoped-slots.vue │ │ │ │ └── tags.vue │ │ │ ├── sliders │ │ │ │ ├── continuous.vue │ │ │ │ ├── custom-colors.vue │ │ │ │ ├── dark.vue │ │ │ │ ├── discrete.vue │ │ │ │ ├── editable-numeric-value.vue │ │ │ │ └── icons.vue │ │ │ ├── snackbars │ │ │ │ ├── contextual.vue │ │ │ │ └── position.vue │ │ │ ├── steppers │ │ │ │ ├── alternate-labels.vue │ │ │ │ ├── alternative-error.vue │ │ │ │ ├── dynamic.vue │ │ │ │ ├── editable.vue │ │ │ │ ├── error.vue │ │ │ │ ├── example.vue │ │ │ │ ├── horizontal.vue │ │ │ │ ├── linear.vue │ │ │ │ ├── non-editable.vue │ │ │ │ ├── non-linear.vue │ │ │ │ ├── optional.vue │ │ │ │ ├── vertical-error.vue │ │ │ │ └── vertical.vue │ │ │ ├── subheaders │ │ │ │ ├── grid.vue │ │ │ │ ├── list.vue │ │ │ │ └── menu.vue │ │ │ ├── tables │ │ │ │ ├── expand.vue │ │ │ │ ├── footer.vue │ │ │ │ ├── headerCell.vue │ │ │ │ ├── headerless.vue │ │ │ │ ├── headers.vue │ │ │ │ ├── noData.vue │ │ │ │ ├── paginate.vue │ │ │ │ ├── search.vue │ │ │ │ ├── select.vue │ │ │ │ ├── server.vue │ │ │ │ ├── sort.vue │ │ │ │ ├── standard.vue │ │ │ │ └── theme.vue │ │ │ ├── tabs │ │ │ │ ├── centered.vue │ │ │ │ ├── content.vue │ │ │ │ ├── desktop.vue │ │ │ │ ├── disabled-scroll.vue │ │ │ │ ├── grow.vue │ │ │ │ ├── icons.vue │ │ │ │ ├── pagination.vue │ │ │ │ ├── search.vue │ │ │ │ └── toolbar.vue │ │ │ ├── text-fields │ │ │ │ ├── box.vue │ │ │ │ ├── character-counter.vue │ │ │ │ ├── custom-colors.vue │ │ │ │ ├── custom-validation.vue │ │ │ │ ├── full-width-with-character-counter.vue │ │ │ │ ├── hint.vue │ │ │ │ ├── icon-dark.vue │ │ │ │ ├── icon.vue │ │ │ │ ├── label-dark.vue │ │ │ │ ├── label.vue │ │ │ │ ├── masks.vue │ │ │ │ ├── multi-line-dark.vue │ │ │ │ ├── multi-line.vue │ │ │ │ ├── password.vue │ │ │ │ ├── prefixes-and-suffixes.vue │ │ │ │ ├── progress-bar.vue │ │ │ │ ├── required-fields.vue │ │ │ │ ├── single-line-dark.vue │ │ │ │ ├── single-line.vue │ │ │ │ ├── textarea.vue │ │ │ │ └── validation.vue │ │ │ ├── toolbar │ │ │ │ ├── app-bar-extension.vue │ │ │ │ ├── app-bar-menu.vue │ │ │ │ ├── app-bar.vue │ │ │ │ ├── column-width-with-hierarchy.vue │ │ │ │ ├── default.vue │ │ │ │ ├── dense-prominent.vue │ │ │ │ ├── dense.vue │ │ │ │ ├── flexible-and-card.vue │ │ │ │ ├── floating-with-search.vue │ │ │ │ ├── prominent.vue │ │ │ │ ├── scrolling.vue │ │ │ │ ├── system-bars-status-window.vue │ │ │ │ └── variations.vue │ │ │ ├── tooltips │ │ │ │ ├── default.vue │ │ │ │ └── visibility.vue │ │ │ ├── touch │ │ │ │ └── default.vue │ │ │ └── transitions │ │ │ │ ├── custom-origin.vue │ │ │ │ ├── fade-transition.vue │ │ │ │ ├── scale-transition.vue │ │ │ │ ├── slide-x-transitions.vue │ │ │ │ └── slide-y-transitions.vue │ │ ├── index.html │ │ ├── pages │ │ │ ├── ALaCarteView.vue │ │ │ ├── AlertsView.vue │ │ │ ├── AlignmentView.vue │ │ │ ├── AvatarsView.vue │ │ │ ├── BadgesView.vue │ │ │ ├── BottomNavigationView.vue │ │ │ ├── BottomSheetsView.vue │ │ │ ├── BreadcrumbsView.vue │ │ │ ├── ButtonsView.vue │ │ │ ├── CardsView.vue │ │ │ ├── CarouselView.vue │ │ │ ├── ChipsView.vue │ │ │ ├── ColorsView.vue │ │ │ ├── ContentView.vue │ │ │ ├── ContributingView.vue │ │ │ ├── DatatablesView.vue │ │ │ ├── DepthView.vue │ │ │ ├── DialogsView.vue │ │ │ ├── DisplayView.vue │ │ │ ├── DividerView.vue │ │ │ ├── ElevationView.vue │ │ │ ├── ExampleView.vue │ │ │ ├── ExpansionPanelView.vue │ │ │ ├── FabsView.vue │ │ │ ├── FaqView.vue │ │ │ ├── FooterView.vue │ │ │ ├── FormsView.vue │ │ │ ├── GridListView.vue │ │ │ ├── GridView.vue │ │ │ ├── HomeView.vue │ │ │ ├── IconView.vue │ │ │ ├── LayoutsView.vue │ │ │ ├── ListsView.vue │ │ │ ├── MenusView.vue │ │ │ ├── NavigationDrawerView.vue │ │ │ ├── PaginationView.vue │ │ │ ├── ParallaxView.vue │ │ │ ├── PickersView.vue │ │ │ ├── PremadeThemesView.vue │ │ │ ├── ProgressView.vue │ │ │ ├── QuickStartView.vue │ │ │ ├── ResizeView.vue │ │ │ ├── RipplesView.vue │ │ │ ├── RoadmapView.vue │ │ │ ├── SSRView.vue │ │ │ ├── SandboxView.vue │ │ │ ├── ScrollView.vue │ │ │ ├── SelectView.vue │ │ │ ├── SelectionControlsView.vue │ │ │ ├── SliderView.vue │ │ │ ├── SnackbarView.vue │ │ │ ├── SpacingView.vue │ │ │ ├── SponsorsView.vue │ │ │ ├── SteppersView.vue │ │ │ ├── SubheaderView.vue │ │ │ ├── TabsView.vue │ │ │ ├── TextFieldsView.vue │ │ │ ├── ThemeView.vue │ │ │ ├── ToolbarsView.vue │ │ │ ├── TooltipsView.vue │ │ │ ├── TouchView.vue │ │ │ ├── TransitionsView.vue │ │ │ ├── TypographyView.vue │ │ │ ├── WhyView.vue │ │ │ └── i18n │ │ │ │ └── Layout │ │ │ │ └── en.js │ │ └── static │ │ │ ├── android-chrome-192x192.png │ │ │ ├── android-chrome-512x512.png │ │ │ ├── apple-touch-icon-114x114.png │ │ │ ├── apple-touch-icon-120x120.png │ │ │ ├── apple-touch-icon-144x144.png │ │ │ ├── apple-touch-icon-152x152.png │ │ │ ├── apple-touch-icon-180x180.png │ │ │ ├── apple-touch-icon-57x57.png │ │ │ ├── apple-touch-icon-60x60.png │ │ │ ├── apple-touch-icon-72x72.png │ │ │ ├── apple-touch-icon-76x76.png │ │ │ ├── apple-touch-icon.png │ │ │ ├── browserconfig.xml │ │ │ ├── doc-images │ │ │ ├── affiliates │ │ │ │ ├── madewithvuejs.png │ │ │ │ ├── vuejobs-logo.svg │ │ │ │ ├── vuejobs.png │ │ │ │ ├── vuejsdevelopers.png │ │ │ │ └── vueradar.png │ │ │ ├── backers │ │ │ │ ├── casino.webp │ │ │ │ ├── cocoatechlogo.png │ │ │ │ ├── cycloid.png │ │ │ │ ├── deister-logo-light.png │ │ │ │ ├── deister-software.png │ │ │ │ ├── lmax-exchange.png │ │ │ │ └── n8controls.png │ │ │ ├── bg-2.jpg │ │ │ ├── bg.jpg │ │ │ ├── bottom-sheets │ │ │ │ ├── google.png │ │ │ │ ├── hangouts.png │ │ │ │ ├── inbox.png │ │ │ │ ├── keep.png │ │ │ │ └── messenger.png │ │ │ ├── browser-stack.png │ │ │ ├── browser-stack.svg │ │ │ ├── cards │ │ │ │ ├── desert.jpg │ │ │ │ ├── docks.jpg │ │ │ │ ├── drop.jpg │ │ │ │ ├── foster.jpg │ │ │ │ ├── girl.jpg │ │ │ │ ├── halcyon.png │ │ │ │ ├── hotel.jpg │ │ │ │ ├── house.jpg │ │ │ │ ├── nature.jpg │ │ │ │ ├── plane.jpg │ │ │ │ ├── road.jpg │ │ │ │ ├── space.jpg │ │ │ │ ├── store.jpg │ │ │ │ └── sunshine.jpg │ │ │ ├── carousel │ │ │ │ ├── bird.jpg │ │ │ │ ├── planet.jpg │ │ │ │ ├── sky.jpg │ │ │ │ └── squirrel.jpg │ │ │ ├── cloudflare.svg │ │ │ ├── feature1.svg │ │ │ ├── feature2.svg │ │ │ ├── feature3.svg │ │ │ ├── featured.png │ │ │ ├── header-logo.svg │ │ │ ├── hero_bg.png │ │ │ ├── john.jpg │ │ │ ├── layouts │ │ │ │ ├── baseline-flipped.png │ │ │ │ ├── baseline.png │ │ │ │ ├── complex.png │ │ │ │ ├── dark.png │ │ │ │ ├── google-contacts.png │ │ │ │ ├── google-keep.png │ │ │ │ └── google-youtube.png │ │ │ ├── lists │ │ │ │ ├── 1.jpg │ │ │ │ ├── 2.jpg │ │ │ │ ├── 3.jpg │ │ │ │ ├── 4.jpg │ │ │ │ ├── 5.jpg │ │ │ │ ├── ali.png │ │ │ │ └── alison.jpeg │ │ │ ├── logo.svg │ │ │ ├── md.jpg │ │ │ ├── md2.jpg │ │ │ ├── nature.jpg │ │ │ ├── parallax │ │ │ │ ├── cosmos.jpg │ │ │ │ ├── material.jpg │ │ │ │ └── material2.jpg │ │ │ ├── patreon.png │ │ │ ├── paypal.png │ │ │ ├── save │ │ │ │ ├── bg-2.jpg │ │ │ │ ├── hero_bg.png │ │ │ │ ├── md.jpg │ │ │ │ ├── md2.jpg │ │ │ │ ├── nature.jpg │ │ │ │ └── vbanner.jpg │ │ │ ├── slant-footer.svg │ │ │ ├── slant-header.svg │ │ │ ├── slant-repeat.svg │ │ │ ├── starter │ │ │ │ ├── vuetify-blog-starter.png │ │ │ │ ├── vuetify-parallax-starter.png │ │ │ │ └── vuetify-premium.jpg │ │ │ ├── toolbar │ │ │ │ └── map.jpg │ │ │ └── vbanner.jpg │ │ │ ├── duck.png │ │ │ ├── facebook.png │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── favicon.ico │ │ │ ├── github.png │ │ │ ├── mail.png │ │ │ ├── manifest.json │ │ │ ├── mstile-144x144.png │ │ │ ├── mstile-150x150.png │ │ │ ├── mstile-310x150.png │ │ │ ├── mstile-310x310.png │ │ │ ├── mstile-70x70.png │ │ │ ├── robots.txt │ │ │ ├── safari-pinned-tab.svg │ │ │ ├── sitemap.xml │ │ │ ├── twitter.png │ │ │ ├── v.png │ │ │ ├── vuetify_cli.svg │ │ │ ├── vuetify_layout1.svg │ │ │ ├── vuetify_layout2.svg │ │ │ ├── vuetify_semantic.svg │ │ │ └── vuetify_sizes.svg │ ├── 0.17 │ │ ├── examples │ │ │ ├── alerts │ │ │ │ ├── closable.vue │ │ │ │ ├── contextual.vue │ │ │ │ ├── example.vue │ │ │ │ ├── icon.vue │ │ │ │ ├── outline.vue │ │ │ │ └── transition.vue │ │ │ ├── alignment │ │ │ │ └── text.vue │ │ │ ├── avatars │ │ │ │ ├── advanced.vue │ │ │ │ ├── icon-and-text.vue │ │ │ │ └── standard.vue │ │ │ ├── badges │ │ │ │ ├── character.vue │ │ │ │ ├── icon.vue │ │ │ │ ├── inline.vue │ │ │ │ └── visibility.vue │ │ │ ├── bottom-navigation │ │ │ │ ├── color-and-shift.vue │ │ │ │ ├── icons-and-text.vue │ │ │ │ └── toggle.vue │ │ │ ├── bottom-sheets │ │ │ │ ├── inset.vue │ │ │ │ └── standard.vue │ │ │ ├── breadcrumbs │ │ │ │ ├── icon-dividers.vue │ │ │ │ └── text-dividers.vue │ │ │ ├── buttons │ │ │ │ ├── app-bar.vue │ │ │ │ ├── block.vue │ │ │ │ ├── dropdown.vue │ │ │ │ ├── flat.vue │ │ │ │ ├── floating.vue │ │ │ │ ├── icon.vue │ │ │ │ ├── loaders.vue │ │ │ │ ├── outline.vue │ │ │ │ ├── raised.vue │ │ │ │ ├── round.vue │ │ │ │ ├── sizing.vue │ │ │ │ └── toggle.vue │ │ │ ├── cards │ │ │ │ ├── components.vue │ │ │ │ ├── custom-actions.vue │ │ │ │ ├── grids.vue │ │ │ │ ├── horizontal.vue │ │ │ │ └── media-with-text.vue │ │ │ ├── carousel │ │ │ │ ├── custom-delimiter.vue │ │ │ │ ├── custom-transition.vue │ │ │ │ ├── default.vue │ │ │ │ ├── hide-controls.vue │ │ │ │ └── hide-delimiters.vue │ │ │ ├── chips │ │ │ │ ├── closable.vue │ │ │ │ ├── colored.vue │ │ │ │ ├── default.vue │ │ │ │ ├── icon.vue │ │ │ │ ├── in-selects.vue │ │ │ │ ├── label.vue │ │ │ │ └── outline.vue │ │ │ ├── dialogs │ │ │ │ ├── form.vue │ │ │ │ ├── fullscreen.vue │ │ │ │ ├── modal.vue │ │ │ │ ├── overflowed.vue │ │ │ │ ├── scrollable.vue │ │ │ │ ├── simple.vue │ │ │ │ └── without-activator.vue │ │ │ ├── display │ │ │ │ └── hidden-elements.vue │ │ │ ├── dividers │ │ │ │ ├── full-bleed.vue │ │ │ │ ├── inset.vue │ │ │ │ ├── light-and-dark.vue │ │ │ │ └── subheaders.vue │ │ │ ├── expansion-panel │ │ │ │ ├── accordion.vue │ │ │ │ ├── expand.vue │ │ │ │ ├── focusable.vue │ │ │ │ └── popout.vue │ │ │ ├── fabs │ │ │ │ ├── display-animation.vue │ │ │ │ ├── lateral-screens.vue │ │ │ │ ├── promoted-action.vue │ │ │ │ ├── small.vue │ │ │ │ └── speed-dial.vue │ │ │ ├── footer │ │ │ │ └── default.vue │ │ │ ├── forms │ │ │ │ ├── basic-validation.vue │ │ │ │ ├── validation-with-submit-and-clear.vue │ │ │ │ ├── vee-validate.vue │ │ │ │ └── vuelidate.vue │ │ │ ├── grid-lists │ │ │ │ ├── default.vue │ │ │ │ └── subheader.vue │ │ │ ├── grid │ │ │ │ ├── direction-and-align.vue │ │ │ │ ├── grid.vue │ │ │ │ ├── nested-grid.vue │ │ │ │ ├── offset.vue │ │ │ │ ├── order.vue │ │ │ │ ├── row-column-breakpoint.vue │ │ │ │ ├── tags.vue │ │ │ │ └── unique-layouts.vue │ │ │ ├── icons │ │ │ │ ├── buttons.vue │ │ │ │ ├── color.vue │ │ │ │ ├── font-awesome.vue │ │ │ │ ├── mdi.vue │ │ │ │ └── standard.vue │ │ │ ├── layouts │ │ │ │ ├── baseline-flipped.vue │ │ │ │ ├── baseline.vue │ │ │ │ ├── complex.vue │ │ │ │ ├── dark.vue │ │ │ │ ├── google-contacts.vue │ │ │ │ ├── google-keep.vue │ │ │ │ ├── google-youtube.vue │ │ │ │ └── sandbox.vue │ │ │ ├── lists │ │ │ │ ├── action-with-title-and-subtitle.vue │ │ │ │ ├── avatar-subheader-title-and-action.vue │ │ │ │ ├── avatar-three-lines.vue │ │ │ │ ├── avatar-title-and-action.vue │ │ │ │ ├── avatar-two-lines.vue │ │ │ │ ├── card-list.vue │ │ │ │ ├── dark.vue │ │ │ │ ├── expansion-lists.vue │ │ │ │ ├── icon-two-lines-and-action.vue │ │ │ │ ├── subheadings-and-dividers.vue │ │ │ │ └── title-subtitle-actions-and-action-text.vue │ │ │ ├── menus │ │ │ │ ├── absolute-without-activator.vue │ │ │ │ ├── absolute.vue │ │ │ │ ├── activator.vue │ │ │ │ ├── custom-transition.vue │ │ │ │ ├── hover.vue │ │ │ │ ├── menus.vue │ │ │ │ └── popover.vue │ │ │ ├── navigation-drawers │ │ │ │ ├── dark.vue │ │ │ │ ├── mini.vue │ │ │ │ ├── permanent-clipped.vue │ │ │ │ ├── permanent-floating-card.vue │ │ │ │ ├── permanent-floating.vue │ │ │ │ ├── permanent.vue │ │ │ │ ├── persistent.vue │ │ │ │ └── temporary.vue │ │ │ ├── pagination │ │ │ │ ├── disabled.vue │ │ │ │ ├── limit.vue │ │ │ │ ├── long.vue │ │ │ │ ├── round.vue │ │ │ │ └── short.vue │ │ │ ├── parallax │ │ │ │ ├── content.vue │ │ │ │ ├── custom-height.vue │ │ │ │ ├── default.vue │ │ │ │ └── jumbotron.vue │ │ │ ├── pickers │ │ │ │ ├── date-allowed-dates.vue │ │ │ │ ├── date-colorable.vue │ │ │ │ ├── date-dark.vue │ │ │ │ ├── date-dialog-and-menu.vue │ │ │ │ ├── date-formatting.vue │ │ │ │ ├── date-internationalization.vue │ │ │ │ ├── date-light.vue │ │ │ │ ├── month-allowed-months.vue │ │ │ │ ├── month-colorable.vue │ │ │ │ ├── month-dark.vue │ │ │ │ ├── month-dialog-and-menu.vue │ │ │ │ ├── month-internationalization.vue │ │ │ │ ├── month-light.vue │ │ │ │ ├── time-24h-format.vue │ │ │ │ ├── time-allowed-times.vue │ │ │ │ ├── time-colorable.vue │ │ │ │ ├── time-dark.vue │ │ │ │ ├── time-dialog-and-menu.vue │ │ │ │ └── time-light.vue │ │ │ ├── progress-circular │ │ │ │ ├── colored.vue │ │ │ │ ├── default.vue │ │ │ │ ├── indeterminate.vue │ │ │ │ ├── rotate.vue │ │ │ │ └── size-and-width.vue │ │ │ ├── progress-linear │ │ │ │ ├── buffer.vue │ │ │ │ ├── custom-colors.vue │ │ │ │ ├── custom-height-and-contextual-colors.vue │ │ │ │ ├── determinate.vue │ │ │ │ ├── indeterminate.vue │ │ │ │ └── query-indeterminate-and-determinate.vue │ │ │ ├── resize │ │ │ │ └── default.vue │ │ │ ├── ripples │ │ │ │ ├── buttons.vue │ │ │ │ ├── custom-color.vue │ │ │ │ ├── expansion-panels.vue │ │ │ │ ├── html-element.vue │ │ │ │ ├── navigation-drawers.vue │ │ │ │ ├── tabs.vue │ │ │ │ └── toolbars.vue │ │ │ ├── scroll │ │ │ │ ├── default.vue │ │ │ │ └── options.vue │ │ │ ├── selection-controls │ │ │ │ ├── checkboxes-array.vue │ │ │ │ ├── checkboxes-boolean.vue │ │ │ │ ├── checkboxes-colors.vue │ │ │ │ ├── checkboxes-states.vue │ │ │ │ ├── radios-colors.vue │ │ │ │ ├── radios-default.vue │ │ │ │ ├── radios-direction.vue │ │ │ │ ├── switches-array.vue │ │ │ │ ├── switches-boolean.vue │ │ │ │ ├── switches-colors.vue │ │ │ │ └── switches-states.vue │ │ │ ├── selects │ │ │ │ ├── asynchronous.vue │ │ │ │ ├── autocomplete.vue │ │ │ │ ├── combobox.vue │ │ │ │ ├── custom-text-and-value.vue │ │ │ │ ├── dark.vue │ │ │ │ ├── icons.vue │ │ │ │ ├── light.vue │ │ │ │ ├── multiple.vue │ │ │ │ ├── scoped-slots.vue │ │ │ │ └── tags.vue │ │ │ ├── sliders │ │ │ │ ├── continuous.vue │ │ │ │ ├── custom-colors.vue │ │ │ │ ├── dark.vue │ │ │ │ ├── discrete.vue │ │ │ │ ├── editable-numeric-value.vue │ │ │ │ └── icons.vue │ │ │ ├── snackbars │ │ │ │ ├── contextual.vue │ │ │ │ └── position.vue │ │ │ ├── steppers │ │ │ │ ├── alternate-labels.vue │ │ │ │ ├── alternative-error.vue │ │ │ │ ├── dynamic.vue │ │ │ │ ├── editable.vue │ │ │ │ ├── error.vue │ │ │ │ ├── example.vue │ │ │ │ ├── horizontal.vue │ │ │ │ ├── linear.vue │ │ │ │ ├── non-editable.vue │ │ │ │ ├── non-linear.vue │ │ │ │ ├── optional.vue │ │ │ │ ├── vertical-error.vue │ │ │ │ └── vertical.vue │ │ │ ├── subheaders │ │ │ │ ├── grid.vue │ │ │ │ ├── list.vue │ │ │ │ └── menu.vue │ │ │ ├── tables │ │ │ │ ├── expand.vue │ │ │ │ ├── footer.vue │ │ │ │ ├── headerCell.vue │ │ │ │ ├── headerless.vue │ │ │ │ ├── headers.vue │ │ │ │ ├── noData.vue │ │ │ │ ├── paginate.vue │ │ │ │ ├── search.vue │ │ │ │ ├── select.vue │ │ │ │ ├── server.vue │ │ │ │ ├── sort.vue │ │ │ │ ├── standard.vue │ │ │ │ └── theme.vue │ │ │ ├── tabs │ │ │ │ ├── centered.vue │ │ │ │ ├── content.vue │ │ │ │ ├── desktop.vue │ │ │ │ ├── disabled-scroll.vue │ │ │ │ ├── grow.vue │ │ │ │ ├── icons.vue │ │ │ │ ├── pagination.vue │ │ │ │ ├── search.vue │ │ │ │ └── toolbar.vue │ │ │ ├── text-fields │ │ │ │ ├── box.vue │ │ │ │ ├── character-counter.vue │ │ │ │ ├── custom-colors.vue │ │ │ │ ├── custom-validation.vue │ │ │ │ ├── full-width-with-character-counter.vue │ │ │ │ ├── hint.vue │ │ │ │ ├── icon-dark.vue │ │ │ │ ├── icon.vue │ │ │ │ ├── label-dark.vue │ │ │ │ ├── label.vue │ │ │ │ ├── masks.vue │ │ │ │ ├── multi-line-dark.vue │ │ │ │ ├── multi-line.vue │ │ │ │ ├── password.vue │ │ │ │ ├── prefixes-and-suffixes.vue │ │ │ │ ├── progress-bar.vue │ │ │ │ ├── required-fields.vue │ │ │ │ ├── single-line-dark.vue │ │ │ │ ├── single-line.vue │ │ │ │ ├── textarea.vue │ │ │ │ └── validation.vue │ │ │ ├── toolbar │ │ │ │ ├── app-bar-extension.vue │ │ │ │ ├── app-bar-menu.vue │ │ │ │ ├── app-bar.vue │ │ │ │ ├── column-width-with-hierarchy.vue │ │ │ │ ├── default.vue │ │ │ │ ├── dense-prominent.vue │ │ │ │ ├── dense.vue │ │ │ │ ├── flexible-and-card.vue │ │ │ │ ├── floating-with-search.vue │ │ │ │ ├── prominent.vue │ │ │ │ ├── scrolling.vue │ │ │ │ ├── system-bars-status-window.vue │ │ │ │ └── variations.vue │ │ │ ├── tooltips │ │ │ │ ├── default.vue │ │ │ │ └── visibility.vue │ │ │ ├── touch │ │ │ │ └── default.vue │ │ │ └── transitions │ │ │ │ ├── custom-origin.vue │ │ │ │ ├── fade-transition.vue │ │ │ │ ├── scale-transition.vue │ │ │ │ ├── slide-x-transitions.vue │ │ │ │ └── slide-y-transitions.vue │ │ ├── index.html │ │ ├── pages │ │ │ ├── ALaCarteView.vue │ │ │ ├── AlertsView.vue │ │ │ ├── AlignmentView.vue │ │ │ ├── AvatarsView.vue │ │ │ ├── BadgesView.vue │ │ │ ├── BottomNavigationView.vue │ │ │ ├── BottomSheetsView.vue │ │ │ ├── BreadcrumbsView.vue │ │ │ ├── ButtonsView.vue │ │ │ ├── CardsView.vue │ │ │ ├── CarouselView.vue │ │ │ ├── ChipsView.vue │ │ │ ├── ColorsView.vue │ │ │ ├── ContentView.vue │ │ │ ├── ContributingView.vue │ │ │ ├── DatatablesView.vue │ │ │ ├── DepthView.vue │ │ │ ├── DialogsView.vue │ │ │ ├── DisplayView.vue │ │ │ ├── DividerView.vue │ │ │ ├── ElevationView.vue │ │ │ ├── ExampleView.vue │ │ │ ├── ExpansionPanelView.vue │ │ │ ├── FabsView.vue │ │ │ ├── FaqView.vue │ │ │ ├── FooterView.vue │ │ │ ├── FormsView.vue │ │ │ ├── GridListView.vue │ │ │ ├── GridView.vue │ │ │ ├── HomeView.vue │ │ │ ├── IconView.vue │ │ │ ├── LayoutsView.vue │ │ │ ├── ListsView.vue │ │ │ ├── MenusView.vue │ │ │ ├── NavigationDrawerView.vue │ │ │ ├── PaginationView.vue │ │ │ ├── ParallaxView.vue │ │ │ ├── PickersView.vue │ │ │ ├── PremadeThemesView.vue │ │ │ ├── ProgressView.vue │ │ │ ├── QuickStartView.vue │ │ │ ├── ResizeView.vue │ │ │ ├── RipplesView.vue │ │ │ ├── RoadmapView.vue │ │ │ ├── SSRView.vue │ │ │ ├── SandboxView.vue │ │ │ ├── ScrollView.vue │ │ │ ├── SelectView.vue │ │ │ ├── SelectionControlsView.vue │ │ │ ├── SliderView.vue │ │ │ ├── SnackbarView.vue │ │ │ ├── SpacingView.vue │ │ │ ├── SponsorsView.vue │ │ │ ├── SteppersView.vue │ │ │ ├── SubheaderView.vue │ │ │ ├── TabsView.vue │ │ │ ├── TextFieldsView.vue │ │ │ ├── ThemeView.vue │ │ │ ├── ToolbarsView.vue │ │ │ ├── TooltipsView.vue │ │ │ ├── TouchView.vue │ │ │ ├── TransitionsView.vue │ │ │ ├── TypographyView.vue │ │ │ ├── WhyView.vue │ │ │ └── i18n │ │ │ │ └── Layout │ │ │ │ └── en.js │ │ └── static │ │ │ ├── android-chrome-192x192.png │ │ │ ├── android-chrome-512x512.png │ │ │ ├── apple-touch-icon-114x114.png │ │ │ ├── apple-touch-icon-120x120.png │ │ │ ├── apple-touch-icon-144x144.png │ │ │ ├── apple-touch-icon-152x152.png │ │ │ ├── apple-touch-icon-180x180.png │ │ │ ├── apple-touch-icon-57x57.png │ │ │ ├── apple-touch-icon-60x60.png │ │ │ ├── apple-touch-icon-72x72.png │ │ │ ├── apple-touch-icon-76x76.png │ │ │ ├── apple-touch-icon.png │ │ │ ├── browserconfig.xml │ │ │ ├── doc-images │ │ │ ├── affiliates │ │ │ │ ├── madewithvuejs.png │ │ │ │ ├── vuejobs-logo.svg │ │ │ │ ├── vuejobs.png │ │ │ │ ├── vuejsdevelopers.png │ │ │ │ ├── vueradar.png │ │ │ │ └── vueradar2.png │ │ │ ├── backers │ │ │ │ ├── casino.webp │ │ │ │ ├── cocoatechlogo.png │ │ │ │ ├── cycloid.png │ │ │ │ ├── deister-logo-light.png │ │ │ │ ├── deister-software.png │ │ │ │ ├── eikos-partners.webp │ │ │ │ ├── intygrate.png │ │ │ │ ├── lmax-exchange.png │ │ │ │ ├── n8controls.png │ │ │ │ ├── quitt.png │ │ │ │ ├── rate-genius.png │ │ │ │ └── trek10.svg │ │ │ ├── bg-2.jpg │ │ │ ├── bg.jpg │ │ │ ├── bottom-sheets │ │ │ │ ├── google.png │ │ │ │ ├── hangouts.png │ │ │ │ ├── inbox.png │ │ │ │ ├── keep.png │ │ │ │ └── messenger.png │ │ │ ├── browser-stack.png │ │ │ ├── browser-stack.svg │ │ │ ├── cards │ │ │ │ ├── desert.jpg │ │ │ │ ├── docks.jpg │ │ │ │ ├── drop.jpg │ │ │ │ ├── foster.jpg │ │ │ │ ├── girl.jpg │ │ │ │ ├── halcyon.png │ │ │ │ ├── hotel.jpg │ │ │ │ ├── house.jpg │ │ │ │ ├── nature.jpg │ │ │ │ ├── plane.jpg │ │ │ │ ├── road.jpg │ │ │ │ ├── space.jpg │ │ │ │ ├── store.jpg │ │ │ │ └── sunshine.jpg │ │ │ ├── carousel │ │ │ │ ├── bird.jpg │ │ │ │ ├── planet.jpg │ │ │ │ ├── sky.jpg │ │ │ │ └── squirrel.jpg │ │ │ ├── cloudflare.svg │ │ │ ├── feature1.svg │ │ │ ├── feature2.svg │ │ │ ├── feature3.svg │ │ │ ├── featured.png │ │ │ ├── header-logo.svg │ │ │ ├── hero_bg.png │ │ │ ├── john.jpg │ │ │ ├── layouts │ │ │ │ ├── baseline-flipped.png │ │ │ │ ├── baseline.png │ │ │ │ ├── complex.png │ │ │ │ ├── dark.png │ │ │ │ ├── google-contacts.png │ │ │ │ ├── google-keep.png │ │ │ │ └── google-youtube.png │ │ │ ├── lists │ │ │ │ ├── 1.jpg │ │ │ │ ├── 2.jpg │ │ │ │ ├── 3.jpg │ │ │ │ ├── 4.jpg │ │ │ │ ├── 5.jpg │ │ │ │ ├── ali.png │ │ │ │ └── alison.jpeg │ │ │ ├── logo.svg │ │ │ ├── md.jpg │ │ │ ├── md2.jpg │ │ │ ├── nature.jpg │ │ │ ├── parallax │ │ │ │ ├── cosmos.jpg │ │ │ │ ├── material.jpg │ │ │ │ └── material2.jpg │ │ │ ├── patreon.png │ │ │ ├── paypal.png │ │ │ ├── save │ │ │ │ ├── bg-2.jpg │ │ │ │ ├── hero_bg.png │ │ │ │ ├── md.jpg │ │ │ │ ├── md2.jpg │ │ │ │ ├── nature.jpg │ │ │ │ └── vbanner.jpg │ │ │ ├── slant-footer.svg │ │ │ ├── slant-header.svg │ │ │ ├── slant-repeat.svg │ │ │ ├── starter │ │ │ │ ├── vuetify-blog-starter.png │ │ │ │ ├── vuetify-parallax-starter.png │ │ │ │ └── vuetify-premium.jpg │ │ │ ├── toolbar │ │ │ │ └── map.jpg │ │ │ └── vbanner.jpg │ │ │ ├── duck.png │ │ │ ├── facebook.png │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── favicon.ico │ │ │ ├── github.png │ │ │ ├── mail.png │ │ │ ├── manifest.json │ │ │ ├── mstile-144x144.png │ │ │ ├── mstile-150x150.png │ │ │ ├── mstile-310x150.png │ │ │ ├── mstile-310x310.png │ │ │ ├── mstile-70x70.png │ │ │ ├── robots.txt │ │ │ ├── safari-pinned-tab.svg │ │ │ ├── sitemap.xml │ │ │ ├── twitter.png │ │ │ ├── v.png │ │ │ ├── vuetify_cli.svg │ │ │ ├── vuetify_layout1.svg │ │ │ ├── vuetify_layout2.svg │ │ │ ├── vuetify_semantic.svg │ │ │ └── vuetify_sizes.svg │ └── releases.json ├── renderOnServer.js ├── router │ ├── 301.json │ ├── index.js │ ├── paths.js │ └── scroll-behavior.js ├── scripts │ ├── lint-commit-message.js │ └── warn-npm-install.js ├── static │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon-114x114.png │ ├── apple-touch-icon-120x120.png │ ├── apple-touch-icon-144x144.png │ ├── apple-touch-icon-152x152.png │ ├── apple-touch-icon-180x180.png │ ├── apple-touch-icon-57x57.png │ ├── apple-touch-icon-60x60.png │ ├── apple-touch-icon-72x72.png │ ├── apple-touch-icon-76x76.png │ ├── apple-touch-icon.png │ ├── browserconfig.xml │ ├── doc-images │ │ ├── ads │ │ │ └── store-ad-1.png │ │ ├── affiliates │ │ │ ├── madewithvuejs.png │ │ │ ├── vuejobs-logo.svg │ │ │ ├── vuejobs.png │ │ │ ├── vuejsdevelopers.png │ │ │ ├── vueradar.png │ │ │ └── vueradar2.png │ │ ├── backers │ │ │ ├── casino.webp │ │ │ ├── cocoatechlogo.png │ │ │ ├── cycloid.png │ │ │ ├── deister-logo-light.png │ │ │ ├── deister-software.png │ │ │ ├── eikos-partners.webp │ │ │ ├── intygrate.png │ │ │ ├── lmax-exchange.png │ │ │ ├── n8controls.png │ │ │ ├── quitt.png │ │ │ ├── rate-genius.png │ │ │ ├── trek10.svg │ │ │ └── zweidenker-logo-grey.svg │ │ ├── become_a_patron_button.png │ │ ├── bg-2.jpg │ │ ├── bg.jpg │ │ ├── bottom-sheets │ │ │ ├── google.png │ │ │ ├── hangouts.png │ │ │ ├── inbox.png │ │ │ ├── keep.png │ │ │ └── messenger.png │ │ ├── browser-stack.png │ │ ├── browser-stack.svg │ │ ├── cards │ │ │ ├── desert.jpg │ │ │ ├── docks.jpg │ │ │ ├── drop.jpg │ │ │ ├── foster.jpg │ │ │ ├── girl.jpg │ │ │ ├── halcyon.png │ │ │ ├── hotel.jpg │ │ │ ├── house.jpg │ │ │ ├── nature.jpg │ │ │ ├── plane.jpg │ │ │ ├── road.jpg │ │ │ ├── space.jpg │ │ │ ├── store.jpg │ │ │ └── sunshine.jpg │ │ ├── carousel │ │ │ ├── bird.jpg │ │ │ ├── planet.jpg │ │ │ ├── sky.jpg │ │ │ └── squirrel.jpg │ │ ├── cloudflare.svg │ │ ├── feature1.svg │ │ ├── feature2.svg │ │ ├── feature3.svg │ │ ├── featured.png │ │ ├── header-logo.svg │ │ ├── hero_bg.png │ │ ├── john.jpg │ │ ├── layouts │ │ │ ├── baseline-flipped.png │ │ │ ├── baseline.png │ │ │ ├── centered.png │ │ │ ├── complex.png │ │ │ ├── dark.png │ │ │ ├── google-contacts.png │ │ │ ├── google-keep.png │ │ │ └── google-youtube.png │ │ ├── lists │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ ├── ali.png │ │ │ └── alison.jpeg │ │ ├── logo-inverted.png │ │ ├── logo.svg │ │ ├── md.jpg │ │ ├── md2.jpg │ │ ├── nature.jpg │ │ ├── parallax │ │ │ ├── cosmos.jpg │ │ │ ├── material.jpg │ │ │ └── material2.jpg │ │ ├── patreon-dark.png │ │ ├── patreon.png │ │ ├── patreon_logo.png │ │ ├── paypal.png │ │ ├── powered-by-madewithvue-1.svg │ │ ├── powered-by-madewithvue-2.svg │ │ ├── save │ │ │ ├── bg-2.jpg │ │ │ ├── hero_bg.png │ │ │ ├── md.jpg │ │ │ ├── md2.jpg │ │ │ ├── nature.jpg │ │ │ └── vbanner.jpg │ │ ├── slant-footer.svg │ │ ├── slant-header.svg │ │ ├── slant-repeat.svg │ │ ├── starter │ │ │ ├── vuetify-blog-starter.png │ │ │ ├── vuetify-parallax-starter.png │ │ │ └── vuetify-premium.jpg │ │ ├── themes │ │ │ └── alpha │ │ │ │ └── alpha.png │ │ ├── toolbar │ │ │ └── map.jpg │ │ └── vbanner.jpg │ ├── duck.png │ ├── facebook.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── github.png │ ├── mail.png │ ├── manifest.json │ ├── mstile-144x144.png │ ├── mstile-150x150.png │ ├── mstile-310x150.png │ ├── mstile-310x310.png │ ├── mstile-70x70.png │ ├── robots.txt │ ├── safari-pinned-tab.svg │ ├── sitemap.xml │ ├── twitter.png │ ├── v-alt.svg │ ├── v.png │ ├── v.svg │ ├── vuetify-logo-300.png │ ├── vuetify_cli.svg │ ├── vuetify_layout1.svg │ ├── vuetify_layout2.svg │ ├── vuetify_semantic.svg │ └── vuetify_sizes.svg ├── store │ ├── app │ │ ├── actions.js │ │ ├── getters.js │ │ ├── index.js │ │ ├── mutations.js │ │ └── state.js │ ├── index.js │ ├── modules.js │ └── store │ │ ├── actions.js │ │ ├── getters.js │ │ ├── index.js │ │ ├── mutations.js │ │ └── state.js ├── themes │ ├── blog-starter │ │ ├── assets │ │ │ └── logo.png │ │ └── index.html │ └── parallax-starter │ │ ├── assets │ │ ├── hero.jpeg │ │ ├── logo.png │ │ ├── plane.jpg │ │ ├── section.jpeg │ │ └── vuetify.png │ │ └── index.html └── util │ ├── asyncData.js │ ├── helpers.js │ └── shopifyClient.js ├── Controllers └── HomeController.cs ├── Dockerfile ├── LICENSE ├── Program.cs ├── README.md ├── Startup.cs ├── Views ├── Home │ └── Index.cshtml ├── Shared │ ├── Error.cshtml │ └── _Layout.cshtml ├── _ViewImports.cshtml └── _ViewStart.cshtml ├── appsettings.Development.json ├── appsettings.json ├── package-lock.json ├── package.json ├── tsconfig.json ├── vuetify-aspnetcore.csproj ├── webpack.config.js ├── webpack.config.vendor.js └── wwwroot └── favicon.ico /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | ["es2015", { "modules": false }], 4 | ["stage-2"] 5 | ], 6 | "plugins": ["transform-runtime"], 7 | "comments": true, 8 | "env": { 9 | "test": { 10 | "presets": ["es2015", "stage-2"], 11 | "plugins": ["istanbul"] 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /ClientApp/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 11 | -------------------------------------------------------------------------------- /ClientApp/build/vue-loader.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | extractCSS: process.env.NODE_ENV === 'production', 3 | preserveWhitespace: false, 4 | postcss: [ 5 | require('autoprefixer')({ 6 | browsers: ['last 3 versions'] 7 | }) 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /ClientApp/components/core/AppList.vue: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /ClientApp/components/core/index.js: -------------------------------------------------------------------------------- 1 | import AppAlert from './AppAlert' 2 | import AppBackFab from './AppBackFab' 3 | 4 | export default { 5 | AppAlert, 6 | AppBackFab 7 | } 8 | -------------------------------------------------------------------------------- /ClientApp/components/generator/index.js: -------------------------------------------------------------------------------- 1 | import C1 from './C1' 2 | import C2 from './C2' 3 | import C3 from './C3' 4 | import C4 from './C4' 5 | import C5 from './C5' 6 | 7 | export default [ 8 | C1, 9 | C2, 10 | C3, 11 | C4, 12 | C5 13 | ] 14 | -------------------------------------------------------------------------------- /ClientApp/components/helpers/SectionHead.vue: -------------------------------------------------------------------------------- 1 | 5 | 6 | 16 | -------------------------------------------------------------------------------- /ClientApp/components/helpers/SectionText.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 15 | -------------------------------------------------------------------------------- /ClientApp/components/index.js: -------------------------------------------------------------------------------- 1 | import Core from '@/components/core' 2 | import Helpers from '@/components/helpers' 3 | import Misc from '@/components/misc' 4 | import Views from '@/components/views' 5 | 6 | export default Object.assign({}, 7 | Core, 8 | Helpers, 9 | Misc, 10 | Views 11 | ) 12 | -------------------------------------------------------------------------------- /ClientApp/components/views/index.js: -------------------------------------------------------------------------------- 1 | import DocView from './DocView' 2 | import ExampleView from './ExampleView' 3 | import FullscreenView from './FullscreenView' 4 | 5 | export default { 6 | DocView, 7 | ExampleView, 8 | FullscreenView 9 | } 10 | -------------------------------------------------------------------------------- /ClientApp/examples/buttons/block.vue: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /ClientApp/examples/buttons/round.vue: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /ClientApp/examples/buttons/usage.vue: -------------------------------------------------------------------------------- 1 | 9 | -------------------------------------------------------------------------------- /ClientApp/examples/chips/label.vue: -------------------------------------------------------------------------------- 1 | 12 | -------------------------------------------------------------------------------- /ClientApp/examples/chips/outline.vue: -------------------------------------------------------------------------------- 1 | 12 | -------------------------------------------------------------------------------- /ClientApp/examples/colors/classes.vue: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /ClientApp/examples/colors/colorPack.vue: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ClientApp/examples/colors/textClasses.vue: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /ClientApp/examples/date-pickers/dateReadonly.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 16 | -------------------------------------------------------------------------------- /ClientApp/examples/date-pickers/monthReadonly.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 16 | -------------------------------------------------------------------------------- /ClientApp/examples/footer/default.vue: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /ClientApp/examples/paginations/disabled.vue: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /ClientApp/examples/paginations/round.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 16 | -------------------------------------------------------------------------------- /ClientApp/examples/paginations/short.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 16 | -------------------------------------------------------------------------------- /ClientApp/examples/parallax/content.vue: -------------------------------------------------------------------------------- 1 | 9 | -------------------------------------------------------------------------------- /ClientApp/examples/parallax/customHeight.vue: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /ClientApp/examples/parallax/default.vue: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /ClientApp/examples/parallax/jumbotron.vue: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /ClientApp/examples/progress/linearDeterminate.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 14 | -------------------------------------------------------------------------------- /ClientApp/examples/progress/linearIndeterminate.vue: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /ClientApp/examples/ripples/buttons.vue: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /ClientApp/examples/ripples/customColor.vue: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /ClientApp/examples/ripples/htmlElement.vue: -------------------------------------------------------------------------------- 1 | 9 | -------------------------------------------------------------------------------- /ClientApp/examples/ripples/tabs.vue: -------------------------------------------------------------------------------- 1 | 16 | -------------------------------------------------------------------------------- /ClientApp/examples/ripples/toolbars.vue: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /ClientApp/examples/spacing/horizontal.vue: -------------------------------------------------------------------------------- 1 | 12 | -------------------------------------------------------------------------------- /ClientApp/examples/tabs/fixedTabs.vue: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /ClientApp/examples/tabs/right.vue: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /ClientApp/examples/toolbars/appBarItems.vue: -------------------------------------------------------------------------------- 1 | 11 | -------------------------------------------------------------------------------- /ClientApp/lang/en/additional/Generator.js: -------------------------------------------------------------------------------- 1 | export default { 2 | header: 'Theme generator' 3 | } 4 | -------------------------------------------------------------------------------- /ClientApp/lang/en/directives/index.js: -------------------------------------------------------------------------------- 1 | import Resizing from './Resizing' 2 | import Ripples from './Ripples' 3 | import Scrolling from './Scrolling' 4 | import TouchSupport from './TouchSupport' 5 | 6 | export default { 7 | Resizing, 8 | Ripples, 9 | Scrolling, 10 | TouchSupport 11 | } 12 | -------------------------------------------------------------------------------- /ClientApp/lang/en/generic/Common.js: -------------------------------------------------------------------------------- 1 | export default { 2 | askCommunity: 'Ask the community', 3 | contactUs: 'Contact Us', 4 | needHelp: 'Need Help?', 5 | getHelp: 'Get Help Now', 6 | havingIssues: 'Are you having issues?' 7 | } 8 | -------------------------------------------------------------------------------- /ClientApp/lang/en/generic/Events.js: -------------------------------------------------------------------------------- 1 | export default { 2 | 'input': 'The updated bound model' 3 | } 4 | -------------------------------------------------------------------------------- /ClientApp/lang/en/generic/Params.js: -------------------------------------------------------------------------------- 1 | export default { 2 | callback: 'The callback function to invoke', 3 | debounce: 'Duration to wait before invoking the callback method' 4 | } 5 | -------------------------------------------------------------------------------- /ClientApp/lang/en/generic/Types.js: -------------------------------------------------------------------------------- 1 | export default { 2 | Any: 'Any', 3 | Array: 'Array', 4 | Boolean: 'Boolean', 5 | Function: 'Function', 6 | Number: 'Number', 7 | Object: 'Object', 8 | String: 'String', 9 | undefined: 'undefined' 10 | } 11 | -------------------------------------------------------------------------------- /ClientApp/lang/en/guides/index.js: -------------------------------------------------------------------------------- 1 | import ServerSideRendering from './ServerSideRendering' 2 | import ALaCarte from './ALaCarte' 3 | 4 | export default { 5 | ServerSideRendering, ALaCarte 6 | } 7 | -------------------------------------------------------------------------------- /ClientApp/lang/en/layout/Sandbox.js: -------------------------------------------------------------------------------- 1 | export default { 2 | header: 'Sandbox', 3 | headerText: 'This page will allow you to configure the various settings available to you when setting up a layout with Vuetify. Keep in mind, this is _**not**_ an exhaustive list, but a starting point allowing you to understand what is available.' 4 | } 5 | -------------------------------------------------------------------------------- /ClientApp/lang/en/mixins/Applicationable.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | app: 'Designates the component as part of the application layout. Used for dynamically adjusting content sizing' 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /ClientApp/lang/en/mixins/Bootable.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | lazy: 'Conditionally renders content on mounted. Will only render content if activated' 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /ClientApp/lang/en/mixins/Colorable.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | color: 'Applies specified color to the control' 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /ClientApp/lang/en/mixins/Delayable.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | openDelay: 'Milliseconds to wait before opening component', 4 | closeDelay: 'Milliseconds to wait before closing component' 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /ClientApp/lang/en/mixins/Filterable.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | noDataText: 'Display text when there is no data' 4 | }, 5 | slots: { 6 | noData: 'Displayed when there are no filtered items' 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /ClientApp/lang/en/mixins/Rippleable.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | ripple: 'Applies the `v-ripple` directive' 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /ClientApp/lang/en/mixins/Soloable.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | solo: 'Changes the style of the input', 4 | soloInverted: 'Reduces element opacity until focused', 5 | flat: 'Removes elevation (shadow) added to element when using the **solo** or **solo-inverted** props' 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /ClientApp/lang/en/mixins/Themeable.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | dark: 'Applies the dark theme variant', 4 | light: 'Applies the light theme variant' 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /ClientApp/lang/en/mixins/Transitionable.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | mode: 'Sets the transition mode (does not apply to transition-group)', 4 | origin: 'Sets the transition origin', 5 | transition: 'Sets the component transition. Can be one of the built in transitions or your own.' 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /ClientApp/lang/en/motion/index.js: -------------------------------------------------------------------------------- 1 | import Scrolling from './Scrolling' 2 | import Transitions from './Transitions' 3 | 4 | export default { 5 | Scrolling, 6 | Transitions 7 | } 8 | -------------------------------------------------------------------------------- /ClientApp/lang/en/style/index.js: -------------------------------------------------------------------------------- 1 | import Colors from './Colors' 2 | import Theme from './Theme' 3 | import Typography from './Typography' 4 | import Content from './Content' 5 | 6 | export default { 7 | Colors, 8 | Theme, 9 | Typography, 10 | Content 11 | } 12 | -------------------------------------------------------------------------------- /ClientApp/lang/en/vuetify/AppDrawer.js: -------------------------------------------------------------------------------- 1 | export default { 2 | becomeASponsor: 'Become a Patron', 3 | diamondSponsors: 'Diamond Sponsors' 4 | } 5 | -------------------------------------------------------------------------------- /ClientApp/lang/en/vuetify/index.js: -------------------------------------------------------------------------------- 1 | import AppDrawer from './AppDrawer' 2 | import AppToolbar from './AppToolbar' 3 | import Home from './Home' 4 | import Store from './Store' 5 | 6 | export default { 7 | AppDrawer, 8 | AppToolbar, 9 | Home, 10 | Store 11 | } 12 | -------------------------------------------------------------------------------- /ClientApp/lang/index.js: -------------------------------------------------------------------------------- 1 | import en from './en' 2 | import ru from './ru' 3 | import ko from './ko' 4 | import zhHans from './zhHans' 5 | import ja from './ja' 6 | 7 | export { 8 | en, 9 | ru, 10 | ko, 11 | zhHans, 12 | ja 13 | } 14 | -------------------------------------------------------------------------------- /ClientApp/lang/ja/additional/Generator.js: -------------------------------------------------------------------------------- 1 | export default { 2 | header: 'Theme generator' 3 | } 4 | -------------------------------------------------------------------------------- /ClientApp/lang/ja/directives/index.js: -------------------------------------------------------------------------------- 1 | import Resizing from './Resizing' 2 | import Ripples from './Ripples' 3 | import Scrolling from './Scrolling' 4 | import TouchSupport from './TouchSupport' 5 | 6 | export default { 7 | Resizing, 8 | Ripples, 9 | Scrolling, 10 | TouchSupport 11 | } 12 | -------------------------------------------------------------------------------- /ClientApp/lang/ja/generic/Common.js: -------------------------------------------------------------------------------- 1 | export default { 2 | askCommunity: 'Ask the community', 3 | contactUs: 'Contact Us', 4 | needHelp: 'Need Help?', 5 | getHelp: 'Get Help Now', 6 | havingIssues: 'Are you having issues?' 7 | } 8 | -------------------------------------------------------------------------------- /ClientApp/lang/ja/generic/Events.js: -------------------------------------------------------------------------------- 1 | export default { 2 | 'input': 'The updated bound model' 3 | } 4 | -------------------------------------------------------------------------------- /ClientApp/lang/ja/generic/Params.js: -------------------------------------------------------------------------------- 1 | export default { 2 | callback: 'The callback function to invoke', 3 | debounce: 'Duration to wait before invoking the callback method' 4 | } 5 | -------------------------------------------------------------------------------- /ClientApp/lang/ja/generic/Types.js: -------------------------------------------------------------------------------- 1 | export default { 2 | Any: 'Any', 3 | Array: 'Array', 4 | Boolean: 'Boolean', 5 | Function: 'Function', 6 | Number: 'Number', 7 | Object: 'Object', 8 | String: 'String', 9 | undefined: 'undefined' 10 | } 11 | -------------------------------------------------------------------------------- /ClientApp/lang/ja/guides/index.js: -------------------------------------------------------------------------------- 1 | import ServerSideRendering from './ServerSideRendering' 2 | import ALaCarte from './ALaCarte' 3 | 4 | export default { 5 | ServerSideRendering, ALaCarte 6 | } 7 | -------------------------------------------------------------------------------- /ClientApp/lang/ja/layout/Sandbox.js: -------------------------------------------------------------------------------- 1 | export default { 2 | header: 'Sandbox', 3 | headerText: 'This page will allow you to configure the various settings available to you when setting up a layout with Vuetify. Keep in mind, this is _**not**_ an exhaustive list, but a starting point allowing you to understand what is available.' 4 | } 5 | -------------------------------------------------------------------------------- /ClientApp/lang/ja/mixins/Applicationable.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | app: 'Designates the component as part of the application layout. Used for dynamically adjusting content sizing' 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /ClientApp/lang/ja/mixins/Bootable.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | lazy: 'Conditionally renders content on mounted. Will only render content if activated' 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /ClientApp/lang/ja/mixins/Colorable.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | color: 'Applies specified color to the control' 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /ClientApp/lang/ja/mixins/Delayable.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | openDelay: 'Milliseconds to wait before opening component', 4 | closeDelay: 'Milliseconds to wait before closing component' 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /ClientApp/lang/ja/mixins/Filterable.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | noDataText: 'Display text when there is no data' 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /ClientApp/lang/ja/mixins/Rippleable.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | ripple: 'Applies the `v-ripple` directive' 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /ClientApp/lang/ja/mixins/Soloable.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | solo: 'Changes the style of the input', 4 | soloInverted: 'Reduces element opacity until focused', 5 | flat: 'Removes elevation (shadow) added to element when using the **solo** or **solo-inverted** props' 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /ClientApp/lang/ja/mixins/Themeable.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | dark: 'Applies the dark theme variant', 4 | light: 'Applies the light theme variant' 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /ClientApp/lang/ja/mixins/Transitionable.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | mode: 'Sets the transition mode (does not apply to transition-group)', 4 | origin: 'Sets the transition origin', 5 | transition: 'Sets the component transition. Can be one of the built in transitions or your own.' 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /ClientApp/lang/ja/motion/index.js: -------------------------------------------------------------------------------- 1 | import Scrolling from './Scrolling' 2 | import Transitions from './Transitions' 3 | 4 | export default { 5 | Scrolling, 6 | Transitions 7 | } 8 | -------------------------------------------------------------------------------- /ClientApp/lang/ja/style/Typography.js: -------------------------------------------------------------------------------- 1 | export default { 2 | header: 'Typography', 3 | headerText: 'アプリケーションのタイポグラフィーは重要な機能の1つです。Vuetify.js ではマテリアルデザインの仕様である Roboto Font を使用しています。それぞれの見出しのサイズには対応するヘルパークラスが存在します。', 4 | examplesHeader: 'サンプル' 5 | } 6 | -------------------------------------------------------------------------------- /ClientApp/lang/ja/style/index.js: -------------------------------------------------------------------------------- 1 | import Colors from './Colors' 2 | import Theme from './Theme' 3 | import Typography from './Typography' 4 | import Content from './Content' 5 | 6 | export default { 7 | Colors, 8 | Theme, 9 | Typography, 10 | Content 11 | } 12 | -------------------------------------------------------------------------------- /ClientApp/lang/ja/vuetify/AppDrawer.js: -------------------------------------------------------------------------------- 1 | export default { 2 | becomeASponsor: 'スポンサーになる', 3 | diamondSponsors: 'Diamond Sponsors' 4 | } 5 | -------------------------------------------------------------------------------- /ClientApp/lang/ja/vuetify/index.js: -------------------------------------------------------------------------------- 1 | import AppDrawer from './AppDrawer' 2 | import Home from './Home' 3 | import Store from './Store' 4 | 5 | export default { 6 | AppDrawer, 7 | Home, 8 | Store 9 | } 10 | -------------------------------------------------------------------------------- /ClientApp/lang/ko/additional/Generator.js: -------------------------------------------------------------------------------- 1 | export default { 2 | header: '테마 생성기 (Theme generator)' 3 | } 4 | -------------------------------------------------------------------------------- /ClientApp/lang/ko/directives/index.js: -------------------------------------------------------------------------------- 1 | import Resizing from './Resizing' 2 | import Ripples from './Ripples' 3 | import Scrolling from './Scrolling' 4 | import TouchSupport from './TouchSupport' 5 | 6 | export default { 7 | Resizing, 8 | Ripples, 9 | Scrolling, 10 | TouchSupport 11 | } 12 | -------------------------------------------------------------------------------- /ClientApp/lang/ko/generic/Common.js: -------------------------------------------------------------------------------- 1 | export default { 2 | askCommunity: '커뮤니티에 질문하기', 3 | contactUs: 'Contact Us', 4 | needHelp: '도움이 필요하세요?', 5 | getHelp: 'Get Help Now', 6 | havingIssues: '문제(issue)가 있나요?' 7 | } 8 | -------------------------------------------------------------------------------- /ClientApp/lang/ko/generic/Events.js: -------------------------------------------------------------------------------- 1 | export default { 2 | 'input': '연결된 모델을 업데이트 (The updated bound model)' 3 | } 4 | -------------------------------------------------------------------------------- /ClientApp/lang/ko/generic/Params.js: -------------------------------------------------------------------------------- 1 | export default { 2 | callback: '호출(invoke)할 콜백 함수', 3 | debounce: '콜백 메소드를 호출하기 전에 기다리는 시간' 4 | } 5 | -------------------------------------------------------------------------------- /ClientApp/lang/ko/generic/Types.js: -------------------------------------------------------------------------------- 1 | export default { 2 | Any: 'Any', 3 | Array: '배열', 4 | Boolean: '부울', 5 | Function: '함수', 6 | Number: '숫자', 7 | Object: '객체', 8 | String: '문자열', 9 | undefined: 'undefined' 10 | } 11 | -------------------------------------------------------------------------------- /ClientApp/lang/ko/guides/index.js: -------------------------------------------------------------------------------- 1 | import ServerSideRendering from './ServerSideRendering' 2 | import ALaCarte from './ALaCarte' 3 | 4 | export default { 5 | ServerSideRendering, ALaCarte 6 | } 7 | -------------------------------------------------------------------------------- /ClientApp/lang/ko/mixins/Applicationable.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | app: '컴포넌트를 어플리케이션 레이아웃은 한 부분으로 지정. 컨텐츠 크기를 동적으로 맞추는데 사용됨' 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /ClientApp/lang/ko/mixins/Bootable.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | lazy: 'mounted에서 컨텐츠를 조건부로 렌더링. 컨첸츠가 활성화 되었을 경우에만 렌더링합니다.' 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /ClientApp/lang/ko/mixins/Colorable.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | color: '컨트롤에 색상을 지정' 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /ClientApp/lang/ko/mixins/Delayable.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | openDelay: '컴포넌트가 열리기 전에 기다리는 시간(밀리세컨드)', 4 | closeDelay: '컴포넌트가 닫히기 전에 기다리는 시간(밀리세컨드)' 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /ClientApp/lang/ko/mixins/Filterable.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | noDataText: '데이터가 없을때 보여지는 문자열' 4 | }, 5 | slots: { 6 | blur: 'Emitted when the input is blurred', 7 | change: 'Emitted when the select is changed by user interaction', 8 | 'update:error': 'The `update.sync` event' 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /ClientApp/lang/ko/mixins/Loadable.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | loading: '선형 프로그레스바를 표시. 프로그레스바의 색을 나타내는 문자열(마테리얼 이나 테마 색상 - **primary**, **secondary**, **success**, **info**, **warning**, **error**)이나 부울값(boolean) 이 가능. 부울값의 경우 컴포넌트 색상(컴포넌트가 지원할 경우 color prop으로 지정된 값)이나 primary 색상이 사용됨' 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /ClientApp/lang/ko/mixins/Positionable.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | absolute: '요소를 절대 위치 시킴', 4 | bottom: '컴포넌트를 아랫쪽(bottom)으로 정렬', 5 | fixed: '요소의 위치를 고정', 6 | left: '요소를 왼쪽으로 정렬', 7 | right: '요소를 오른쪽으로 정렬', 8 | top: '요소를 위쪽(top)으로 정렬' 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /ClientApp/lang/ko/mixins/Rippleable.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | ripple: '`v-ripple` 디렉티브를 적용' 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /ClientApp/lang/ko/mixins/Soloable.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | solo: '인풋의 스타일을 바꿈', 4 | soloInverted: '포커스 되지 않은 요소의 불투명도를 낮춤', 5 | flat: '**solo**나 **solo-inverted** prop을 사용할때 요소의 높이(elevation)와 그림자를 제거' 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /ClientApp/lang/ko/mixins/Themeable.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | dark: '다크 테마를 적용', 4 | light: '라이트 테마를 적용' 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /ClientApp/lang/ko/mixins/Transitionable.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | mode: '트랜지션 모드를 설정(transition-group 에는 적용되지 않음)', 4 | origin: '트랜지션 중심(origin)을 설정', 5 | transition: '컴포넌트 트랜지션을 설정. 내장 트랜지션과 사용자 트랜지션 모두 가능' 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /ClientApp/lang/ko/mixins/Validatable.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | error: '수동으로 인풋을 에러 상태로 만듬', 4 | errorMessages: '인풋을 에러 상태로 만들고 커스텀 에러메시지를 전달. **rules** prop에 의해 발생하는 임이의 검증과 결합가능. 이 필드가 검증을 호출하지는 않습니다.', 5 | rules: 'True나 에러메시지 문자열을 반환하는 함수들의 배열', 6 | validateOnBlur: 'blur 이벤트까지 검증을 지연' 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /ClientApp/lang/ko/motion/index.js: -------------------------------------------------------------------------------- 1 | import Scrolling from './Scrolling' 2 | import Transitions from './Transitions' 3 | 4 | export default { 5 | Scrolling, 6 | Transitions 7 | } 8 | -------------------------------------------------------------------------------- /ClientApp/lang/ko/style/Typography.js: -------------------------------------------------------------------------------- 1 | export default { 2 | header: '타이포그래피 (활자, Typography)', 3 | headerText: '타이포그래피는 어플리케이션의 기능만큼 중요합니다. Vuetify.js는 메테리얼 디자인 스팩의 Roboto Font 를 사용합니다. 각 헤딩(heading) 크기를 정하는 관련 헬퍼 클라스를 이용해서 여러 컴포넌트의 스타일을 통일할 수 있습니다.', 4 | examplesHeader: '예제' 5 | } 6 | -------------------------------------------------------------------------------- /ClientApp/lang/ko/style/index.js: -------------------------------------------------------------------------------- 1 | import Colors from './Colors' 2 | import Theme from './Theme' 3 | import Typography from './Typography' 4 | import Content from './Content' 5 | 6 | export default { 7 | Colors, 8 | Theme, 9 | Typography, 10 | Content 11 | } 12 | -------------------------------------------------------------------------------- /ClientApp/lang/ko/vuetify/AppDrawer.js: -------------------------------------------------------------------------------- 1 | export default { 2 | becomeASponsor: '후원자 되기', 3 | diamondSponsors: '다이아몬드 스폰서' 4 | } 5 | -------------------------------------------------------------------------------- /ClientApp/lang/ko/vuetify/index.js: -------------------------------------------------------------------------------- 1 | import AppDrawer from './AppDrawer' 2 | import AppToolbar from './AppToolbar' 3 | import Home from './Home' 4 | import Store from './Store' 5 | 6 | export default { 7 | AppDrawer, 8 | AppToolbar, 9 | Home, 10 | Store 11 | } 12 | -------------------------------------------------------------------------------- /ClientApp/lang/ru/additional/Generator.js: -------------------------------------------------------------------------------- 1 | export default { 2 | header: 'Генератор тем' 3 | } 4 | -------------------------------------------------------------------------------- /ClientApp/lang/ru/directives/index.js: -------------------------------------------------------------------------------- 1 | import Resizing from './Resizing' 2 | import Ripples from './Ripples' 3 | import Scrolling from './Scrolling' 4 | import TouchSupport from './TouchSupport' 5 | 6 | export default { 7 | Resizing, 8 | Ripples, 9 | Scrolling, 10 | TouchSupport 11 | } 12 | -------------------------------------------------------------------------------- /ClientApp/lang/ru/generic/Events.js: -------------------------------------------------------------------------------- 1 | export default { 2 | 'input': 'Обновленная связанная модель' 3 | } 4 | -------------------------------------------------------------------------------- /ClientApp/lang/ru/generic/Params.js: -------------------------------------------------------------------------------- 1 | export default { 2 | callback: 'Функция обратного вызова для вызова', 3 | debounce: 'Длительность ожидания перед вызовом метода обратного вызова' 4 | } 5 | -------------------------------------------------------------------------------- /ClientApp/lang/ru/generic/Types.js: -------------------------------------------------------------------------------- 1 | export default { 2 | Any: 'Any', 3 | Array: 'Array', 4 | Boolean: 'Boolean', 5 | Function: 'Function', 6 | Number: 'Number', 7 | Object: 'Object', 8 | String: 'String', 9 | undefined: 'undefined' 10 | } 11 | -------------------------------------------------------------------------------- /ClientApp/lang/ru/guides/index.js: -------------------------------------------------------------------------------- 1 | import ServerSideRendering from './ServerSideRendering' 2 | import ALaCarte from './ALaCarte' 3 | 4 | export default { 5 | ServerSideRendering, ALaCarte 6 | } 7 | -------------------------------------------------------------------------------- /ClientApp/lang/ru/layout/Sandbox.js: -------------------------------------------------------------------------------- 1 | export default { 2 | header: 'песочница', 3 | headerText: 'Эта страница позволит вам настроить различные параметры, доступные вам при настройке макета с помощью Vuetify. Имейте в виду, это _**не**_ исчерпывающий список, но отправная точка, позволяющая вам понять, что доступно.' 4 | } 5 | -------------------------------------------------------------------------------- /ClientApp/lang/ru/mixins/Applicationable.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | app: 'Назначает компонент как часть макета приложения. Используется для динамической настройки размера содержимого' 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /ClientApp/lang/ru/mixins/Bootable.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | lazy: 'Условно отображает контент на смонтированном. Будет показывать только контент, если он активирован' 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /ClientApp/lang/ru/mixins/Colorable.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | color: 'Применяет заданный цвет к элементу управления' 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /ClientApp/lang/ru/mixins/Delayable.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | openDelay: 'Миллисекунды перед открытием компонента', 4 | closeDelay: 'Миллисекунды до закрытия компонента' 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /ClientApp/lang/ru/mixins/Filterable.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | noDataText: 'Отображать текст, когда нет данных' 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /ClientApp/lang/ru/mixins/Rippleable.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | ripple: 'Применяет директиву `v-ripple`' 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /ClientApp/lang/ru/mixins/Soloable.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | solo: 'Изменяет стиль ввода', 4 | soloInverted: 'Уменьшает непрозрачность элемента, пока не сфокусирован', 5 | flat: 'Удаляет элемент высоты (тень), добавляемый к элементу при использовании **solo** или **solo-inverted**' 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /ClientApp/lang/ru/mixins/Themeable.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | dark: 'Применяет темный вариант темы', 4 | light: 'Применяет светлый вариант темы' 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /ClientApp/lang/ru/mixins/Transitionable.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | mode: 'Устанавливает режим перехода (не относится к _transition-group_)', 4 | origin: 'Устанавливает начало перехода', 5 | transition: 'Устанавливает компонентный переход. Может быть одним из встроенных переходов или вашим собственным.' 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /ClientApp/lang/ru/motion/index.js: -------------------------------------------------------------------------------- 1 | import Transitions from './Transitions' 2 | 3 | export default { 4 | Transitions 5 | } 6 | -------------------------------------------------------------------------------- /ClientApp/lang/ru/style/index.js: -------------------------------------------------------------------------------- 1 | import Colors from './Colors' 2 | import Theme from './Theme' 3 | import Typography from './Typography' 4 | import Content from './Content' 5 | 6 | export default { 7 | Colors, 8 | Theme, 9 | Typography, 10 | Content 11 | } 12 | -------------------------------------------------------------------------------- /ClientApp/lang/ru/vuetify/index.js: -------------------------------------------------------------------------------- 1 | import Home from './Home' 2 | 3 | export default { 4 | Home 5 | } 6 | -------------------------------------------------------------------------------- /ClientApp/lang/zhHans/additional/Generator.js: -------------------------------------------------------------------------------- 1 | export default { 2 | header: '主题生成器' 3 | } 4 | -------------------------------------------------------------------------------- /ClientApp/lang/zhHans/directives/index.js: -------------------------------------------------------------------------------- 1 | import Resizing from './Resizing' 2 | import Ripples from './Ripples' 3 | import Scrolling from './Scrolling' 4 | import TouchSupport from './TouchSupport' 5 | 6 | export default { 7 | Resizing, 8 | Ripples, 9 | Scrolling, 10 | TouchSupport 11 | } 12 | -------------------------------------------------------------------------------- /ClientApp/lang/zhHans/generic/Events.js: -------------------------------------------------------------------------------- 1 | export default { 2 | 'input': '被绑定模型的更新' 3 | } 4 | -------------------------------------------------------------------------------- /ClientApp/lang/zhHans/generic/Params.js: -------------------------------------------------------------------------------- 1 | export default { 2 | callback: '要调用的回调函数', 3 | debounce: '调用回调方法之前需要等待的时间' 4 | } 5 | -------------------------------------------------------------------------------- /ClientApp/lang/zhHans/generic/Slots.js: -------------------------------------------------------------------------------- 1 | export default { 2 | activator: '使用时,将在点击后激活组件(或悬停特定组件),它手动阻止事件传播。如果通过模型打开组件而没有此插槽,则需要手动阻止事件传播。', 3 | badge: '将用于徽章的插槽', 4 | default: 'Vue默认原生插槽', 5 | label: '替换默认标签', 6 | progress: '自定义进度线的插槽(**loading**属性不等于布尔值False时显示)', 7 | noData: '当没有过滤项目时显示' 8 | } 9 | -------------------------------------------------------------------------------- /ClientApp/lang/zhHans/generic/Types.js: -------------------------------------------------------------------------------- 1 | export default { 2 | Any: 'Any', 3 | Array: 'Array', 4 | Boolean: 'Boolean', 5 | Function: 'Function', 6 | Number: 'Number', 7 | Object: 'Object', 8 | String: 'String', 9 | undefined: 'undefined' 10 | } 11 | -------------------------------------------------------------------------------- /ClientApp/lang/zhHans/guides/index.js: -------------------------------------------------------------------------------- 1 | import ServerSideRendering from './ServerSideRendering' 2 | import ALaCarte from './ALaCarte' 3 | 4 | export default { 5 | ServerSideRendering, ALaCarte 6 | } 7 | -------------------------------------------------------------------------------- /ClientApp/lang/zhHans/layout/Alignment.js: -------------------------------------------------------------------------------- 1 | export default { 2 | header: '文本对齐', 3 | headerText: '当屏幕分辨率改变时,布局可能会跟着改变。对齐类可帮助您根据视野大小定位文本。', 4 | toc: [ 5 | { 6 | text: '介绍', 7 | href: 'introduction' 8 | }, 9 | { 10 | text: '示例', 11 | href: 'examples' 12 | } 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /ClientApp/lang/zhHans/layout/Sandbox.js: -------------------------------------------------------------------------------- 1 | export default { 2 | header: '沙箱', 3 | headerText: '这个页面将允许您配置在使用Vuetify设置布局时可以利用的各种设置项。请记住,这 _**不是**_ 一个详尽的列表,而是一个起点,让你了解有什么是可用的。' 4 | } 5 | -------------------------------------------------------------------------------- /ClientApp/lang/zhHans/mixins/Applicationable.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | app: '指定组件作为应用程序布局的一部分,用于动态调整内容的大小' 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /ClientApp/lang/zhHans/mixins/Bootable.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | lazy: '有条件地渲染内容,只有激活时才会渲染内容' 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /ClientApp/lang/zhHans/mixins/Colorable.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | color: '将指定的色彩应用与控件' 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /ClientApp/lang/zhHans/mixins/Delayable.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | openDelay: '打开组件前等待的毫秒数', 4 | closeDelay: '关闭组件前等待的毫秒数' 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /ClientApp/lang/zhHans/mixins/Detachable.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | attach: '指定该组件应该分离到哪个DOM元素,使用CSS选择器字符串或元素的对象应用。', 4 | contentClass: '将自定义类应用于分离的元素。这是很有用的,因为内容被移动到应用程序的末尾,而不是直接通过组件传递给类。' 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /ClientApp/lang/zhHans/mixins/Filterable.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | noDataText: '当没有数据时显示的文本' 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /ClientApp/lang/zhHans/mixins/Loadable.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | loading: `显示线性进度条。可以是指定将哪种颜色应用于进度条的字符串(任何material色彩——主要(primary), 次要(secondary), 成功(success), 信息(info),警告(warning),错误(error)),或者使用组件的布尔值**颜色**(由色彩属性设置——如果它被组件支持的话)还可以是原色。` 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /ClientApp/lang/zhHans/mixins/Positionable.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | absolute: '给元素设置绝对定位', 4 | bottom: '将组件向底部对齐', 5 | fixed: '给元素设置固定定位', 6 | left: '将组件向左边对齐', 7 | right: '将组件向右边对齐', 8 | top: '将组件向顶部对齐' 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /ClientApp/lang/zhHans/mixins/Rippleable.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | ripple: '应用`v-ripple`指令' 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /ClientApp/lang/zhHans/mixins/Soloable.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | solo: '改变输入框的样式', 4 | soloInverted: '减少元素的不透明度,知道获得焦点', 5 | flat: '当使用**solo**或者**solo-inverted**属性时,移除添加到元素的标高(阴影)' 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /ClientApp/lang/zhHans/mixins/Themeable.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | dark: '应用暗黑主题变体', 4 | light: '应用明亮主题变体' 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /ClientApp/lang/zhHans/mixins/Transitionable.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | mode: '设置过渡模式(不适用于“过渡组(transition-group)”)', 4 | origin: '设置过渡原点', 5 | transition: '设置组件过渡效果,可以是内置的过渡配置或者是您自己的配置的其中一个。' 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /ClientApp/lang/zhHans/mixins/Validatable.js: -------------------------------------------------------------------------------- 1 | export default { 2 | props: { 3 | error: '将输入框设置为手动错误状态。', 4 | errorMessages: '将输入框置于错误状态,并传入自定义的错误信息。将与来自**规则(rules)**属性的任何验证相结合。这个字段不会触发验证。', 5 | rules: '返回True或带有错误信息的字符串的函数数组。', 6 | validateOnBlur: '延迟验证直到失去焦点的事件被触发' 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /ClientApp/lang/zhHans/motion/index.js: -------------------------------------------------------------------------------- 1 | import Transitions from './Transitions' 2 | 3 | export default { 4 | Transitions 5 | } 6 | -------------------------------------------------------------------------------- /ClientApp/lang/zhHans/style/Typography.js: -------------------------------------------------------------------------------- 1 | export default { 2 | header: '排版', 3 | headerText: '应用程序的排版与其功能一样重要。Vuetify.js使用Material Design规范Roboto字体。每个标题大小也有一个相应的辅助器类来设置其它元素的样式。', 4 | examplesHeader: '示例' 5 | } 6 | -------------------------------------------------------------------------------- /ClientApp/lang/zhHans/style/index.js: -------------------------------------------------------------------------------- 1 | import Colors from './Colors' 2 | import Theme from './Theme' 3 | import Typography from './Typography' 4 | import Content from './Content' 5 | 6 | export default { 7 | Colors, 8 | Theme, 9 | Typography, 10 | Content 11 | } 12 | -------------------------------------------------------------------------------- /ClientApp/lang/zhHans/vuetify/index.js: -------------------------------------------------------------------------------- 1 | import Home from './Home' 2 | 3 | export default { 4 | Home 5 | } 6 | -------------------------------------------------------------------------------- /ClientApp/mixins/snackbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/mixins/snackbar.js -------------------------------------------------------------------------------- /ClientApp/releases/0.15/examples/alerts/example.vue: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ClientApp/releases/0.15/examples/badges/1.vue: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /ClientApp/releases/0.15/examples/badges/3.vue: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ClientApp/releases/0.15/examples/buttons/12.vue: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /ClientApp/releases/0.15/examples/buttons/13.vue: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /ClientApp/releases/0.15/examples/cards/7.vue: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /ClientApp/releases/0.15/examples/chips/5.vue: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ClientApp/releases/0.15/examples/content/3.vue: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ClientApp/releases/0.15/examples/content/4.vue: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ClientApp/releases/0.15/examples/content/5.vue: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ClientApp/releases/0.15/examples/elevation/1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |

{{ elevation }}

4 |
5 |
6 | -------------------------------------------------------------------------------- /ClientApp/releases/0.15/examples/footer/1.vue: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /ClientApp/releases/0.15/examples/pagination/4.vue: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /ClientApp/releases/0.15/examples/parallax/1.vue: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ClientApp/releases/0.15/examples/parallax/2.vue: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ClientApp/releases/0.15/examples/parallax/3.vue: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ClientApp/releases/0.15/examples/parallax/4.vue: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ClientApp/releases/0.15/examples/progress-linear/1.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 14 | -------------------------------------------------------------------------------- /ClientApp/releases/0.15/examples/progress-linear/2.vue: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /ClientApp/releases/0.15/examples/progress-linear/6.vue: -------------------------------------------------------------------------------- 1 | 9 | -------------------------------------------------------------------------------- /ClientApp/releases/0.15/examples/ripples/1.vue: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /ClientApp/releases/0.15/examples/ripples/2.vue: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /ClientApp/releases/0.15/examples/ripples/5.vue: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ClientApp/releases/0.15/pages/DepthView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/pages/DepthView.vue -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/android-chrome-192x192.png -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/android-chrome-512x512.png -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/apple-touch-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/apple-touch-icon-114x114.png -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/apple-touch-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/apple-touch-icon-144x144.png -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/apple-touch-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/apple-touch-icon-57x57.png -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/apple-touch-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/apple-touch-icon-72x72.png -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/apple-touch-icon.png -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/doc-images/backers/cocoatechlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/doc-images/backers/cocoatechlogo.png -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/doc-images/backers/cycloid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/doc-images/backers/cycloid.png -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/doc-images/backers/deister-logo-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/doc-images/backers/deister-logo-light.png -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/doc-images/backers/deister-software.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/doc-images/backers/deister-software.png -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/doc-images/backers/lmax-exchange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/doc-images/backers/lmax-exchange.png -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/doc-images/bg-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/doc-images/bg-2.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/doc-images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/doc-images/bg.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/doc-images/bottom-sheets/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/doc-images/bottom-sheets/google.png -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/doc-images/bottom-sheets/hangouts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/doc-images/bottom-sheets/hangouts.png -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/doc-images/bottom-sheets/inbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/doc-images/bottom-sheets/inbox.png -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/doc-images/bottom-sheets/keep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/doc-images/bottom-sheets/keep.png -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/doc-images/bottom-sheets/messenger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/doc-images/bottom-sheets/messenger.png -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/doc-images/browser-stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/doc-images/browser-stack.png -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/doc-images/cards/desert.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/doc-images/cards/desert.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/doc-images/cards/docks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/doc-images/cards/docks.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/doc-images/cards/drop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/doc-images/cards/drop.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/doc-images/cards/foster.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/doc-images/cards/foster.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/doc-images/cards/girl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/doc-images/cards/girl.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/doc-images/cards/halcyon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/doc-images/cards/halcyon.png -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/doc-images/cards/hotel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/doc-images/cards/hotel.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/doc-images/cards/house.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/doc-images/cards/house.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/doc-images/cards/nature.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/doc-images/cards/nature.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/doc-images/cards/plane.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/doc-images/cards/plane.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/doc-images/cards/road.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/doc-images/cards/road.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/doc-images/cards/space.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/doc-images/cards/space.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/doc-images/cards/store.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/doc-images/cards/store.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/doc-images/cards/sunshine.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/doc-images/cards/sunshine.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/doc-images/carousel/bird.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/doc-images/carousel/bird.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/doc-images/carousel/planet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/doc-images/carousel/planet.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/doc-images/carousel/sky.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/doc-images/carousel/sky.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/doc-images/carousel/squirrel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/doc-images/carousel/squirrel.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/doc-images/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/doc-images/featured.png -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/doc-images/hero_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/doc-images/hero_bg.png -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/doc-images/john.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/doc-images/john.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/doc-images/lists/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/doc-images/lists/1.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/doc-images/lists/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/doc-images/lists/2.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/doc-images/lists/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/doc-images/lists/3.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/doc-images/lists/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/doc-images/lists/4.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/doc-images/lists/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/doc-images/lists/5.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/doc-images/lists/alison.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/doc-images/lists/alison.jpeg -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/doc-images/md.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/doc-images/md.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/doc-images/md2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/doc-images/md2.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/doc-images/nature.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/doc-images/nature.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/doc-images/parallax/cosmos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/doc-images/parallax/cosmos.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/doc-images/parallax/material.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/doc-images/parallax/material.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/doc-images/parallax/material2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/doc-images/parallax/material2.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/doc-images/patreon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/doc-images/patreon.png -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/doc-images/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/doc-images/paypal.png -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/doc-images/save/bg-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/doc-images/save/bg-2.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/doc-images/save/hero_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/doc-images/save/hero_bg.png -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/doc-images/save/md.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/doc-images/save/md.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/doc-images/save/md2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/doc-images/save/md2.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/doc-images/save/nature.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/doc-images/save/nature.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/doc-images/save/vbanner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/doc-images/save/vbanner.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/doc-images/slant-footer.svg: -------------------------------------------------------------------------------- 1 | slant-footer -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/doc-images/starter/vuetify-blog-starter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/doc-images/starter/vuetify-blog-starter.png -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/doc-images/starter/vuetify-parallax-starter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/doc-images/starter/vuetify-parallax-starter.png -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/doc-images/starter/vuetify-premium.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/doc-images/starter/vuetify-premium.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/doc-images/toolbar/map.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/doc-images/toolbar/map.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/doc-images/vbanner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/doc-images/vbanner.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/duck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/duck.png -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/facebook.png -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/favicon-16x16.png -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/favicon-32x32.png -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/favicon.ico -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/github.png -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/mail.png -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/mstile-144x144.png -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/mstile-150x150.png -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/mstile-310x150.png -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/mstile-310x310.png -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/mstile-70x70.png -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/twitter.png -------------------------------------------------------------------------------- /ClientApp/releases/0.15/static/v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.15/static/v.png -------------------------------------------------------------------------------- /ClientApp/releases/0.16/examples/alerts/example.vue: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ClientApp/releases/0.16/examples/buttons/block.vue: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /ClientApp/releases/0.16/examples/buttons/round.vue: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /ClientApp/releases/0.16/examples/footer/default.vue: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /ClientApp/releases/0.16/examples/pagination/disabled.vue: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /ClientApp/releases/0.16/examples/parallax/content.vue: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ClientApp/releases/0.16/examples/parallax/custom-height.vue: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ClientApp/releases/0.16/examples/parallax/default.vue: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ClientApp/releases/0.16/examples/parallax/jumbotron.vue: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ClientApp/releases/0.16/examples/progress-linear/determinate.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 14 | -------------------------------------------------------------------------------- /ClientApp/releases/0.16/examples/progress-linear/indeterminate.vue: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /ClientApp/releases/0.16/examples/ripples/buttons.vue: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /ClientApp/releases/0.16/examples/ripples/custom-color.vue: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /ClientApp/releases/0.16/examples/ripples/html-element.vue: -------------------------------------------------------------------------------- 1 | 9 | -------------------------------------------------------------------------------- /ClientApp/releases/0.16/examples/ripples/toolbars.vue: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ClientApp/releases/0.16/pages/DepthView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/pages/DepthView.vue -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/android-chrome-192x192.png -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/android-chrome-512x512.png -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/apple-touch-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/apple-touch-icon-114x114.png -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/apple-touch-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/apple-touch-icon-144x144.png -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/apple-touch-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/apple-touch-icon-57x57.png -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/apple-touch-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/apple-touch-icon-72x72.png -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/apple-touch-icon.png -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/affiliates/madewithvuejs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/affiliates/madewithvuejs.png -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/affiliates/vuejobs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/affiliates/vuejobs.png -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/affiliates/vuejsdevelopers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/affiliates/vuejsdevelopers.png -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/affiliates/vueradar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/affiliates/vueradar.png -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/backers/casino.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/backers/casino.webp -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/backers/cocoatechlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/backers/cocoatechlogo.png -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/backers/cycloid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/backers/cycloid.png -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/backers/deister-logo-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/backers/deister-logo-light.png -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/backers/deister-software.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/backers/deister-software.png -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/backers/lmax-exchange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/backers/lmax-exchange.png -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/backers/n8controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/backers/n8controls.png -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/bg-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/bg-2.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/bg.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/bottom-sheets/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/bottom-sheets/google.png -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/bottom-sheets/hangouts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/bottom-sheets/hangouts.png -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/bottom-sheets/inbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/bottom-sheets/inbox.png -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/bottom-sheets/keep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/bottom-sheets/keep.png -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/bottom-sheets/messenger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/bottom-sheets/messenger.png -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/browser-stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/browser-stack.png -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/cards/desert.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/cards/desert.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/cards/docks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/cards/docks.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/cards/drop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/cards/drop.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/cards/foster.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/cards/foster.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/cards/girl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/cards/girl.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/cards/halcyon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/cards/halcyon.png -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/cards/hotel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/cards/hotel.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/cards/house.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/cards/house.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/cards/nature.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/cards/nature.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/cards/plane.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/cards/plane.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/cards/road.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/cards/road.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/cards/space.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/cards/space.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/cards/store.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/cards/store.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/cards/sunshine.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/cards/sunshine.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/carousel/bird.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/carousel/bird.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/carousel/planet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/carousel/planet.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/carousel/sky.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/carousel/sky.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/carousel/squirrel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/carousel/squirrel.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/featured.png -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/hero_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/hero_bg.png -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/john.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/john.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/layouts/baseline-flipped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/layouts/baseline-flipped.png -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/layouts/baseline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/layouts/baseline.png -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/layouts/complex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/layouts/complex.png -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/layouts/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/layouts/dark.png -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/layouts/google-contacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/layouts/google-contacts.png -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/layouts/google-keep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/layouts/google-keep.png -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/layouts/google-youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/layouts/google-youtube.png -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/lists/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/lists/1.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/lists/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/lists/2.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/lists/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/lists/3.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/lists/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/lists/4.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/lists/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/lists/5.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/lists/ali.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/lists/ali.png -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/lists/alison.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/lists/alison.jpeg -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/md.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/md.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/md2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/md2.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/nature.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/nature.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/parallax/cosmos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/parallax/cosmos.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/parallax/material.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/parallax/material.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/parallax/material2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/parallax/material2.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/patreon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/patreon.png -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/paypal.png -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/save/bg-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/save/bg-2.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/save/hero_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/save/hero_bg.png -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/save/md.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/save/md.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/save/md2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/save/md2.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/save/nature.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/save/nature.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/save/vbanner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/save/vbanner.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/slant-footer.svg: -------------------------------------------------------------------------------- 1 | slant-footer -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/starter/vuetify-blog-starter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/starter/vuetify-blog-starter.png -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/starter/vuetify-parallax-starter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/starter/vuetify-parallax-starter.png -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/starter/vuetify-premium.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/starter/vuetify-premium.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/toolbar/map.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/toolbar/map.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/doc-images/vbanner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/doc-images/vbanner.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/duck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/duck.png -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/facebook.png -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/favicon-16x16.png -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/favicon-32x32.png -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/favicon.ico -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/github.png -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/mail.png -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/mstile-144x144.png -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/mstile-150x150.png -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/mstile-310x150.png -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/mstile-310x310.png -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/mstile-70x70.png -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/twitter.png -------------------------------------------------------------------------------- /ClientApp/releases/0.16/static/v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.16/static/v.png -------------------------------------------------------------------------------- /ClientApp/releases/0.17/examples/alerts/example.vue: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ClientApp/releases/0.17/examples/buttons/block.vue: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /ClientApp/releases/0.17/examples/buttons/round.vue: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /ClientApp/releases/0.17/examples/footer/default.vue: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /ClientApp/releases/0.17/examples/pagination/disabled.vue: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /ClientApp/releases/0.17/examples/parallax/content.vue: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ClientApp/releases/0.17/examples/parallax/custom-height.vue: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ClientApp/releases/0.17/examples/parallax/default.vue: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ClientApp/releases/0.17/examples/parallax/jumbotron.vue: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ClientApp/releases/0.17/examples/progress-linear/determinate.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 14 | -------------------------------------------------------------------------------- /ClientApp/releases/0.17/examples/progress-linear/indeterminate.vue: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /ClientApp/releases/0.17/examples/ripples/buttons.vue: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /ClientApp/releases/0.17/examples/ripples/custom-color.vue: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /ClientApp/releases/0.17/examples/ripples/html-element.vue: -------------------------------------------------------------------------------- 1 | 9 | -------------------------------------------------------------------------------- /ClientApp/releases/0.17/examples/ripples/toolbars.vue: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ClientApp/releases/0.17/pages/DepthView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/pages/DepthView.vue -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/android-chrome-192x192.png -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/android-chrome-512x512.png -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/apple-touch-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/apple-touch-icon-114x114.png -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/apple-touch-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/apple-touch-icon-144x144.png -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/apple-touch-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/apple-touch-icon-57x57.png -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/apple-touch-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/apple-touch-icon-72x72.png -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/apple-touch-icon.png -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/affiliates/madewithvuejs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/affiliates/madewithvuejs.png -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/affiliates/vuejobs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/affiliates/vuejobs.png -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/affiliates/vuejsdevelopers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/affiliates/vuejsdevelopers.png -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/affiliates/vueradar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/affiliates/vueradar.png -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/affiliates/vueradar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/affiliates/vueradar2.png -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/backers/casino.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/backers/casino.webp -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/backers/cocoatechlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/backers/cocoatechlogo.png -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/backers/cycloid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/backers/cycloid.png -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/backers/deister-logo-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/backers/deister-logo-light.png -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/backers/deister-software.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/backers/deister-software.png -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/backers/eikos-partners.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/backers/eikos-partners.webp -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/backers/intygrate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/backers/intygrate.png -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/backers/lmax-exchange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/backers/lmax-exchange.png -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/backers/n8controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/backers/n8controls.png -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/backers/quitt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/backers/quitt.png -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/backers/rate-genius.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/backers/rate-genius.png -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/bg-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/bg-2.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/bg.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/bottom-sheets/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/bottom-sheets/google.png -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/bottom-sheets/hangouts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/bottom-sheets/hangouts.png -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/bottom-sheets/inbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/bottom-sheets/inbox.png -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/bottom-sheets/keep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/bottom-sheets/keep.png -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/bottom-sheets/messenger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/bottom-sheets/messenger.png -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/browser-stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/browser-stack.png -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/cards/desert.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/cards/desert.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/cards/docks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/cards/docks.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/cards/drop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/cards/drop.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/cards/foster.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/cards/foster.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/cards/girl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/cards/girl.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/cards/halcyon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/cards/halcyon.png -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/cards/hotel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/cards/hotel.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/cards/house.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/cards/house.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/cards/nature.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/cards/nature.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/cards/plane.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/cards/plane.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/cards/road.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/cards/road.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/cards/space.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/cards/space.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/cards/store.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/cards/store.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/cards/sunshine.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/cards/sunshine.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/carousel/bird.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/carousel/bird.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/carousel/planet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/carousel/planet.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/carousel/sky.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/carousel/sky.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/carousel/squirrel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/carousel/squirrel.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/featured.png -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/hero_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/hero_bg.png -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/john.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/john.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/layouts/baseline-flipped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/layouts/baseline-flipped.png -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/layouts/baseline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/layouts/baseline.png -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/layouts/complex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/layouts/complex.png -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/layouts/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/layouts/dark.png -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/layouts/google-contacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/layouts/google-contacts.png -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/layouts/google-keep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/layouts/google-keep.png -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/layouts/google-youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/layouts/google-youtube.png -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/lists/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/lists/1.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/lists/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/lists/2.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/lists/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/lists/3.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/lists/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/lists/4.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/lists/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/lists/5.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/lists/ali.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/lists/ali.png -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/lists/alison.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/lists/alison.jpeg -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/md.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/md.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/md2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/md2.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/nature.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/nature.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/parallax/cosmos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/parallax/cosmos.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/parallax/material.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/parallax/material.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/parallax/material2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/parallax/material2.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/patreon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/patreon.png -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/paypal.png -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/save/bg-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/save/bg-2.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/save/hero_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/save/hero_bg.png -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/save/md.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/save/md.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/save/md2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/save/md2.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/save/nature.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/save/nature.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/save/vbanner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/save/vbanner.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/slant-footer.svg: -------------------------------------------------------------------------------- 1 | slant-footer -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/starter/vuetify-blog-starter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/starter/vuetify-blog-starter.png -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/starter/vuetify-parallax-starter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/starter/vuetify-parallax-starter.png -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/starter/vuetify-premium.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/starter/vuetify-premium.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/toolbar/map.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/toolbar/map.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/doc-images/vbanner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/doc-images/vbanner.jpg -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/duck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/duck.png -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/facebook.png -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/favicon-16x16.png -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/favicon-32x32.png -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/favicon.ico -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/github.png -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/mail.png -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/mstile-144x144.png -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/mstile-150x150.png -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/mstile-310x150.png -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/mstile-310x310.png -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/mstile-70x70.png -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/twitter.png -------------------------------------------------------------------------------- /ClientApp/releases/0.17/static/v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/releases/0.17/static/v.png -------------------------------------------------------------------------------- /ClientApp/releases/releases.json: -------------------------------------------------------------------------------- 1 | [ 2 | "0.17", 3 | "0.16", 4 | "0.15" 5 | ] 6 | -------------------------------------------------------------------------------- /ClientApp/static/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/android-chrome-192x192.png -------------------------------------------------------------------------------- /ClientApp/static/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/android-chrome-512x512.png -------------------------------------------------------------------------------- /ClientApp/static/apple-touch-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/apple-touch-icon-114x114.png -------------------------------------------------------------------------------- /ClientApp/static/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /ClientApp/static/apple-touch-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/apple-touch-icon-144x144.png -------------------------------------------------------------------------------- /ClientApp/static/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /ClientApp/static/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /ClientApp/static/apple-touch-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/apple-touch-icon-57x57.png -------------------------------------------------------------------------------- /ClientApp/static/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /ClientApp/static/apple-touch-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/apple-touch-icon-72x72.png -------------------------------------------------------------------------------- /ClientApp/static/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /ClientApp/static/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/apple-touch-icon.png -------------------------------------------------------------------------------- /ClientApp/static/doc-images/ads/store-ad-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/ads/store-ad-1.png -------------------------------------------------------------------------------- /ClientApp/static/doc-images/affiliates/madewithvuejs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/affiliates/madewithvuejs.png -------------------------------------------------------------------------------- /ClientApp/static/doc-images/affiliates/vuejobs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/affiliates/vuejobs.png -------------------------------------------------------------------------------- /ClientApp/static/doc-images/affiliates/vuejsdevelopers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/affiliates/vuejsdevelopers.png -------------------------------------------------------------------------------- /ClientApp/static/doc-images/affiliates/vueradar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/affiliates/vueradar.png -------------------------------------------------------------------------------- /ClientApp/static/doc-images/affiliates/vueradar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/affiliates/vueradar2.png -------------------------------------------------------------------------------- /ClientApp/static/doc-images/backers/casino.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/backers/casino.webp -------------------------------------------------------------------------------- /ClientApp/static/doc-images/backers/cocoatechlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/backers/cocoatechlogo.png -------------------------------------------------------------------------------- /ClientApp/static/doc-images/backers/cycloid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/backers/cycloid.png -------------------------------------------------------------------------------- /ClientApp/static/doc-images/backers/deister-logo-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/backers/deister-logo-light.png -------------------------------------------------------------------------------- /ClientApp/static/doc-images/backers/deister-software.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/backers/deister-software.png -------------------------------------------------------------------------------- /ClientApp/static/doc-images/backers/eikos-partners.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/backers/eikos-partners.webp -------------------------------------------------------------------------------- /ClientApp/static/doc-images/backers/intygrate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/backers/intygrate.png -------------------------------------------------------------------------------- /ClientApp/static/doc-images/backers/lmax-exchange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/backers/lmax-exchange.png -------------------------------------------------------------------------------- /ClientApp/static/doc-images/backers/n8controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/backers/n8controls.png -------------------------------------------------------------------------------- /ClientApp/static/doc-images/backers/quitt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/backers/quitt.png -------------------------------------------------------------------------------- /ClientApp/static/doc-images/backers/rate-genius.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/backers/rate-genius.png -------------------------------------------------------------------------------- /ClientApp/static/doc-images/become_a_patron_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/become_a_patron_button.png -------------------------------------------------------------------------------- /ClientApp/static/doc-images/bg-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/bg-2.jpg -------------------------------------------------------------------------------- /ClientApp/static/doc-images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/bg.jpg -------------------------------------------------------------------------------- /ClientApp/static/doc-images/bottom-sheets/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/bottom-sheets/google.png -------------------------------------------------------------------------------- /ClientApp/static/doc-images/bottom-sheets/hangouts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/bottom-sheets/hangouts.png -------------------------------------------------------------------------------- /ClientApp/static/doc-images/bottom-sheets/inbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/bottom-sheets/inbox.png -------------------------------------------------------------------------------- /ClientApp/static/doc-images/bottom-sheets/keep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/bottom-sheets/keep.png -------------------------------------------------------------------------------- /ClientApp/static/doc-images/bottom-sheets/messenger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/bottom-sheets/messenger.png -------------------------------------------------------------------------------- /ClientApp/static/doc-images/browser-stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/browser-stack.png -------------------------------------------------------------------------------- /ClientApp/static/doc-images/cards/desert.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/cards/desert.jpg -------------------------------------------------------------------------------- /ClientApp/static/doc-images/cards/docks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/cards/docks.jpg -------------------------------------------------------------------------------- /ClientApp/static/doc-images/cards/drop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/cards/drop.jpg -------------------------------------------------------------------------------- /ClientApp/static/doc-images/cards/foster.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/cards/foster.jpg -------------------------------------------------------------------------------- /ClientApp/static/doc-images/cards/girl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/cards/girl.jpg -------------------------------------------------------------------------------- /ClientApp/static/doc-images/cards/halcyon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/cards/halcyon.png -------------------------------------------------------------------------------- /ClientApp/static/doc-images/cards/hotel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/cards/hotel.jpg -------------------------------------------------------------------------------- /ClientApp/static/doc-images/cards/house.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/cards/house.jpg -------------------------------------------------------------------------------- /ClientApp/static/doc-images/cards/nature.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/cards/nature.jpg -------------------------------------------------------------------------------- /ClientApp/static/doc-images/cards/plane.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/cards/plane.jpg -------------------------------------------------------------------------------- /ClientApp/static/doc-images/cards/road.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/cards/road.jpg -------------------------------------------------------------------------------- /ClientApp/static/doc-images/cards/space.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/cards/space.jpg -------------------------------------------------------------------------------- /ClientApp/static/doc-images/cards/store.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/cards/store.jpg -------------------------------------------------------------------------------- /ClientApp/static/doc-images/cards/sunshine.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/cards/sunshine.jpg -------------------------------------------------------------------------------- /ClientApp/static/doc-images/carousel/bird.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/carousel/bird.jpg -------------------------------------------------------------------------------- /ClientApp/static/doc-images/carousel/planet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/carousel/planet.jpg -------------------------------------------------------------------------------- /ClientApp/static/doc-images/carousel/sky.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/carousel/sky.jpg -------------------------------------------------------------------------------- /ClientApp/static/doc-images/carousel/squirrel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/carousel/squirrel.jpg -------------------------------------------------------------------------------- /ClientApp/static/doc-images/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/featured.png -------------------------------------------------------------------------------- /ClientApp/static/doc-images/hero_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/hero_bg.png -------------------------------------------------------------------------------- /ClientApp/static/doc-images/john.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/john.jpg -------------------------------------------------------------------------------- /ClientApp/static/doc-images/layouts/baseline-flipped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/layouts/baseline-flipped.png -------------------------------------------------------------------------------- /ClientApp/static/doc-images/layouts/baseline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/layouts/baseline.png -------------------------------------------------------------------------------- /ClientApp/static/doc-images/layouts/centered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/layouts/centered.png -------------------------------------------------------------------------------- /ClientApp/static/doc-images/layouts/complex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/layouts/complex.png -------------------------------------------------------------------------------- /ClientApp/static/doc-images/layouts/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/layouts/dark.png -------------------------------------------------------------------------------- /ClientApp/static/doc-images/layouts/google-contacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/layouts/google-contacts.png -------------------------------------------------------------------------------- /ClientApp/static/doc-images/layouts/google-keep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/layouts/google-keep.png -------------------------------------------------------------------------------- /ClientApp/static/doc-images/layouts/google-youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/layouts/google-youtube.png -------------------------------------------------------------------------------- /ClientApp/static/doc-images/lists/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/lists/1.jpg -------------------------------------------------------------------------------- /ClientApp/static/doc-images/lists/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/lists/2.jpg -------------------------------------------------------------------------------- /ClientApp/static/doc-images/lists/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/lists/3.jpg -------------------------------------------------------------------------------- /ClientApp/static/doc-images/lists/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/lists/4.jpg -------------------------------------------------------------------------------- /ClientApp/static/doc-images/lists/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/lists/5.jpg -------------------------------------------------------------------------------- /ClientApp/static/doc-images/lists/ali.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/lists/ali.png -------------------------------------------------------------------------------- /ClientApp/static/doc-images/lists/alison.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/lists/alison.jpeg -------------------------------------------------------------------------------- /ClientApp/static/doc-images/logo-inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/logo-inverted.png -------------------------------------------------------------------------------- /ClientApp/static/doc-images/md.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/md.jpg -------------------------------------------------------------------------------- /ClientApp/static/doc-images/md2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/md2.jpg -------------------------------------------------------------------------------- /ClientApp/static/doc-images/nature.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/nature.jpg -------------------------------------------------------------------------------- /ClientApp/static/doc-images/parallax/cosmos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/parallax/cosmos.jpg -------------------------------------------------------------------------------- /ClientApp/static/doc-images/parallax/material.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/parallax/material.jpg -------------------------------------------------------------------------------- /ClientApp/static/doc-images/parallax/material2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/parallax/material2.jpg -------------------------------------------------------------------------------- /ClientApp/static/doc-images/patreon-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/patreon-dark.png -------------------------------------------------------------------------------- /ClientApp/static/doc-images/patreon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/patreon.png -------------------------------------------------------------------------------- /ClientApp/static/doc-images/patreon_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/patreon_logo.png -------------------------------------------------------------------------------- /ClientApp/static/doc-images/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/paypal.png -------------------------------------------------------------------------------- /ClientApp/static/doc-images/save/bg-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/save/bg-2.jpg -------------------------------------------------------------------------------- /ClientApp/static/doc-images/save/hero_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/save/hero_bg.png -------------------------------------------------------------------------------- /ClientApp/static/doc-images/save/md.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/save/md.jpg -------------------------------------------------------------------------------- /ClientApp/static/doc-images/save/md2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/save/md2.jpg -------------------------------------------------------------------------------- /ClientApp/static/doc-images/save/nature.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/save/nature.jpg -------------------------------------------------------------------------------- /ClientApp/static/doc-images/save/vbanner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/save/vbanner.jpg -------------------------------------------------------------------------------- /ClientApp/static/doc-images/slant-footer.svg: -------------------------------------------------------------------------------- 1 | slant-footer -------------------------------------------------------------------------------- /ClientApp/static/doc-images/starter/vuetify-blog-starter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/starter/vuetify-blog-starter.png -------------------------------------------------------------------------------- /ClientApp/static/doc-images/starter/vuetify-parallax-starter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/starter/vuetify-parallax-starter.png -------------------------------------------------------------------------------- /ClientApp/static/doc-images/starter/vuetify-premium.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/starter/vuetify-premium.jpg -------------------------------------------------------------------------------- /ClientApp/static/doc-images/themes/alpha/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/themes/alpha/alpha.png -------------------------------------------------------------------------------- /ClientApp/static/doc-images/toolbar/map.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/toolbar/map.jpg -------------------------------------------------------------------------------- /ClientApp/static/doc-images/vbanner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/doc-images/vbanner.jpg -------------------------------------------------------------------------------- /ClientApp/static/duck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/duck.png -------------------------------------------------------------------------------- /ClientApp/static/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/facebook.png -------------------------------------------------------------------------------- /ClientApp/static/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/favicon-16x16.png -------------------------------------------------------------------------------- /ClientApp/static/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/favicon-32x32.png -------------------------------------------------------------------------------- /ClientApp/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/favicon.ico -------------------------------------------------------------------------------- /ClientApp/static/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/github.png -------------------------------------------------------------------------------- /ClientApp/static/mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/mail.png -------------------------------------------------------------------------------- /ClientApp/static/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/mstile-144x144.png -------------------------------------------------------------------------------- /ClientApp/static/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/mstile-150x150.png -------------------------------------------------------------------------------- /ClientApp/static/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/mstile-310x150.png -------------------------------------------------------------------------------- /ClientApp/static/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/mstile-310x310.png -------------------------------------------------------------------------------- /ClientApp/static/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/mstile-70x70.png -------------------------------------------------------------------------------- /ClientApp/static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: -------------------------------------------------------------------------------- /ClientApp/static/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/twitter.png -------------------------------------------------------------------------------- /ClientApp/static/v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/v.png -------------------------------------------------------------------------------- /ClientApp/static/vuetify-logo-300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/static/vuetify-logo-300.png -------------------------------------------------------------------------------- /ClientApp/store/app/actions.js: -------------------------------------------------------------------------------- 1 | export default { 2 | // 3 | } 4 | -------------------------------------------------------------------------------- /ClientApp/store/app/getters.js: -------------------------------------------------------------------------------- 1 | export default { 2 | // 3 | } 4 | -------------------------------------------------------------------------------- /ClientApp/store/app/index.js: -------------------------------------------------------------------------------- 1 | import actions from './actions' 2 | import getters from './getters' 3 | import mutations from './mutations' 4 | import state from './state' 5 | 6 | export default { 7 | namespaced: true, 8 | actions, 9 | getters, 10 | mutations, 11 | state 12 | } 13 | -------------------------------------------------------------------------------- /ClientApp/store/index.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | import Vuex from 'vuex' 3 | 4 | import modules from './modules' 5 | 6 | Vue.use(Vuex) 7 | 8 | export function createStore () { 9 | return new Vuex.Store({ 10 | modules 11 | }) 12 | } 13 | -------------------------------------------------------------------------------- /ClientApp/store/modules.js: -------------------------------------------------------------------------------- 1 | import app from './app' 2 | import store from './store' 3 | 4 | export default { 5 | app, 6 | store 7 | } 8 | -------------------------------------------------------------------------------- /ClientApp/store/store/getters.js: -------------------------------------------------------------------------------- 1 | export default { 2 | // 3 | } 4 | -------------------------------------------------------------------------------- /ClientApp/store/store/index.js: -------------------------------------------------------------------------------- 1 | import actions from './actions' 2 | import getters from './getters' 3 | import mutations from './mutations' 4 | import state from './state' 5 | 6 | export default { 7 | namespaced: true, 8 | actions, 9 | getters, 10 | mutations, 11 | state 12 | } 13 | -------------------------------------------------------------------------------- /ClientApp/store/store/state.js: -------------------------------------------------------------------------------- 1 | export default () => ({ 2 | products: [], 3 | hasFetchedProducts: false, 4 | checkout: null 5 | }) 6 | -------------------------------------------------------------------------------- /ClientApp/themes/blog-starter/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/themes/blog-starter/assets/logo.png -------------------------------------------------------------------------------- /ClientApp/themes/parallax-starter/assets/hero.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/themes/parallax-starter/assets/hero.jpeg -------------------------------------------------------------------------------- /ClientApp/themes/parallax-starter/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/themes/parallax-starter/assets/logo.png -------------------------------------------------------------------------------- /ClientApp/themes/parallax-starter/assets/plane.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/themes/parallax-starter/assets/plane.jpg -------------------------------------------------------------------------------- /ClientApp/themes/parallax-starter/assets/section.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/themes/parallax-starter/assets/section.jpeg -------------------------------------------------------------------------------- /ClientApp/themes/parallax-starter/assets/vuetify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/ClientApp/themes/parallax-starter/assets/vuetify.png -------------------------------------------------------------------------------- /ClientApp/util/shopifyClient.js: -------------------------------------------------------------------------------- 1 | import Client from 'shopify-buy' 2 | 3 | export default Client.buildClient({ 4 | domain: 'vuetify.myshopify.com', 5 | storefrontAccessToken: 'a6c4b48f45ffb74a1062a0776531eec0' 6 | }) 7 | -------------------------------------------------------------------------------- /Views/Home/Index.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "Home Page"; 3 | } 4 | 5 | Loading... 6 | 7 | @section scripts { 8 | 9 | } 10 | -------------------------------------------------------------------------------- /Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using Vuetify.AspNetCore 2 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers 3 | @addTagHelper *, Microsoft.AspNetCore.SpaServices 4 | -------------------------------------------------------------------------------- /Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Debug", 5 | "System": "Information", 6 | "Microsoft": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Warning" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElderJames/aspnetcore-vuetify-universal/930d6374b4d0fcd0767aa625c7b5d5d7c99d7513/wwwroot/favicon.ico --------------------------------------------------------------------------------