110 lines
5.0 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<div class="wrapper">
<div id="nav-tabs">
<h3>Navigation Tabs</h3>
<div class="md-layout">
<div class="md-layout-item md-size-50 md-small-size-100">
<h3><small>Tabs with Icons on Card</small></h3>
<nav-tabs-card no-label>
<template slot="content">
<md-tabs class="md-primary" md-alignment="left">
<md-tab id="tab-home" md-label="Profile" md-icon="face">
<p>
I will be the leader of a company that ends up being worth
billions of dollars, because I got the answers. I understand
culture. I am the nucleus. I think thats a responsibility
that I have, to push possibilities, to show people, this is
the level that things could be at. I think thats a
responsibility that I have, to push possibilities, to show
people, this is the level that things could be at.
</p>
</md-tab>
<md-tab id="tab-pages" md-label="Messages" md-icon="chat">
<p>
I think thats a responsibility that I have, to push
possibilities, to show people, this is the level that things
could be at. I will be the leader of a company that ends up
being worth billions of dollars, because I got the answers.
I understand culture. I am the nucleus. I think thats a
responsibility that I have, to push possibilities, to show
people, this is the level that things could be at.
</p>
</md-tab>
<md-tab id="tab-posts" md-label="Settings" md-icon="build">
<p>
I think thats a responsibility that I have, to push
possibilities, to show people, this is the level that things
could be at. So when you get something that has the name
Kanye West on it, its supposed to be pushing the furthest
possibilities. I will be the leader of a company that ends
up being worth billions of dollars, because I got the
answers. I understand culture. I am the nucleus.
</p>
</md-tab>
</md-tabs>
</template>
</nav-tabs-card>
</div>
<div class="md-layout-item md-size-50 md-small-size-100">
<h3><small>Tabs on Plain Card</small></h3>
<nav-tabs-card no-label tabs-plain>
<template slot="content">
<md-tabs class="md-danger" md-alignment="left">
<md-tab id="tab-home" md-label="Home">
<p>
I think thats a responsibility that I have, to push
possibilities, to show people, this is the level that things
could be at. So when you get something that has the name
Kanye West on it, its supposed to be pushing the furthest
possibilities. I will be the leader of a company that ends
up being worth billions of dollars, because I got the
answers. I understand culture. I am the nucleus.
</p>
</md-tab>
<md-tab id="tab-pages" md-label="Updates">
<p>
I will be the leader of a company that ends up being worth
billions of dollars, because I got the answers. I understand
culture. I am the nucleus. I think thats a responsibility
that I have, to push possibilities, to show people, this is
the level that things could be at. I think thats a
responsibility that I have, to push possibilities, to show
people, this is the level that things could be at.
</p>
</md-tab>
<md-tab id="tab-posts" md-label="History">
<p>
I think thats a responsibility that I have, to push
possibilities, to show people, this is the level that things
could be at. I will be the leader of a company that ends up
being worth billions of dollars, because I got the answers.
I understand culture. I am the nucleus. I think thats a
responsibility that I have, to push possibilities, to show
people, this is the level that things could be at.
</p>
</md-tab>
</md-tabs>
</template>
</nav-tabs-card>
</div>
</div>
</div>
</div>
</template>
<script>
import { NavTabsCard } from "@/components";
export default {
components: {
NavTabsCard
}
};
</script>
<style lang="css"></style>