mirror of
https://github.com/creativetimofficial/vue-material-kit.git
synced 2025-07-07 13:24:21 +08:00
110 lines
5.0 KiB
Vue
110 lines
5.0 KiB
Vue
<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 that’s a responsibility
|
||
that I have, to push possibilities, to show people, this is
|
||
the level that things could be at. I think that’s 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 that’s 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 that’s 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 that’s 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, it’s 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 that’s 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, it’s 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 that’s a responsibility
|
||
that I have, to push possibilities, to show people, this is
|
||
the level that things could be at. I think that’s 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 that’s 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 that’s 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>
|