Vue-material: Accordion / Collapse

Created on 25 Jan 2017  路  4Comments  路  Source: vuematerial/vue-material

Is there any component like Accordion / Collapse available?

Most helpful comment

Yes, I use it like this:

<md-list>
  <md-list-item>
    <md-icon>whatshot</md-icon>
    <span>Selection</span>
    <md-list-expand>

      <!-- here is the custom element -->
      <md-card>
        <md-card-header>
          <md-card-header-text>
            <div class="md-title">Title goes here</div>
            <div class="md-subhead">Subtitle here</div>
          </md-card-header-text>
          <md-card-media>
            <img src="assets/avatar-2.jpg" alt="People">
          </md-card-media>
        </md-card-header>
        <md-card-actions>
          <md-button>Action</md-button>
          <md-button>Action</md-button>
        </md-card-actions>
      </md-card>
      <!-- end -->

    </md-list-expand>
  </md-list-item>
</md-list>

You can place the child elements in <md-list-expand> tag

All 4 comments

Hi, I'm using "Expansion lists", you can see an example here: https://vuematerial.github.io/#/components/list

Hi, but you can put forms or other components in there ?

Yes, I use it like this:

<md-list>
  <md-list-item>
    <md-icon>whatshot</md-icon>
    <span>Selection</span>
    <md-list-expand>

      <!-- here is the custom element -->
      <md-card>
        <md-card-header>
          <md-card-header-text>
            <div class="md-title">Title goes here</div>
            <div class="md-subhead">Subtitle here</div>
          </md-card-header-text>
          <md-card-media>
            <img src="assets/avatar-2.jpg" alt="People">
          </md-card-media>
        </md-card-header>
        <md-card-actions>
          <md-button>Action</md-button>
          <md-button>Action</md-button>
        </md-card-actions>
      </md-card>
      <!-- end -->

    </md-list-expand>
  </md-list-item>
</md-list>

You can place the child elements in <md-list-expand> tag

Thanks @bojko108 !! Works fine !!

Was this page helpful?
0 / 5 - 0 ratings

Related issues

korylprince picture korylprince  路  3Comments

lovepluskaka picture lovepluskaka  路  3Comments

Leshgan picture Leshgan  路  3Comments

tridcatij picture tridcatij  路  3Comments

markus-s24 picture markus-s24  路  3Comments