Vuely
  • Introduction
  • Folder Structure
  • Vuely VueJs
    • Different Layouts
      • Adding Menu In Different Layouts
    • Installation
    • Adding New Component
    • Translate The App(Multi Language Support)
    • Adding New Widgets
    • Themes
    • Style Customization
    • Build an App from Scratch
    • Seed Project
    • Deployment
    • UI Components
      • Buttons
      • Cards
      • Selection controls
      • Carousel
      • Chips
      • Date/Month Pickers
      • Dialog
      • Grid
      • Input / Text field
      • List
      • Menu
      • Progress
      • Banner
      • Select
      • Slider
      • Tabs
      • Toolbar
      • Timepicker
      • Forms
  • Vuely-Laravel
    • Folder Structure
    • Installation Vuely-Laravel
    • Customization
  • Vuely-Laravel with Api Authentication
    • Getting Started
    • Passport Authentication
    • Run Vuely-Laravel-Passport
  • Vuely ExpressJs
    • Folder Structure
    • Installation
    • Layouts
    • Style Customization
    • Deployment
    • Translate the App
    • Browsers Compatibilty
    • Credits
  • Vuely Angular Version
    • Folder Structure
    • Installation
    • Layouts
    • Adding/Deleting Menu & Component
    • RTL
    • Deployment
  • Credits
  • Template Update
  • FAQ's (Frequently Asked Questions)
  • Changelog
  • Customer Support
Powered by GitBook
On this page
  1. Vuely VueJs
  2. UI Components

List

The v-list component is used to display information. It can contain an avatar, content, actions, subheaders and much more. Lists present content in a way that makes it easy to identify a specific item in a collection. They provide a consistent styling for organizing groups of text and images.

<v-layout row wrap>
  <v-list-item>
    <v-list-item-content>
      <v-list-item-title>Single-line item</v-list-item-title>
    </v-list-item-content>
  </v-list-item>
  
  <v-list-item two-line>
    <v-list-item-content>
      <v-list-item-title>Two-line item</v-list-item-title>
      <v-list-item-subtitle>Secondary text</v-list-item-subtitle>
    </v-list-item-content>
  </v-list-item>
  
  <v-list-item three-line>
    <v-list-item-content>
      <v-list-item-title>Three-line item</v-list-item-title>
      <v-list-item-subtitle>
        Secondary line text Lorem ipsum dolor sit amet,
      </v-list-item-subtitle>
      <v-list-item-subtitle>
        consectetur adipiscing elit.
      </v-list-item-subtitle>
    </v-list-item-content>
  </v-list-item>
</v-layout>
PreviousInput / Text fieldNextMenu

Last updated 5 years ago