npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

vue-material-custom-tabs

v0.1.9

Published

Vue.js tabs component based in material design

Downloads

12

Readme

vue-material-tabs

Vue 2 tabs component ❤

Demo

⚓ Features

  • Pagination of nav and tabs
  • Pagination touchable
  • Vertical support
  • Very flexible and customizable
  • Multiple style themes

🚚 Install

 yarn add vue-material-tabs  // npm install --save vue-material-tabs

🚀 Usage

Global

import Vue from "vue";
import Tabs from "vue-material-tabs";

Vue.use(Tabs);

Local

import { tabs, tab } from "vue-material-tabs";

export default {
  components: {
    tabs,
    tabItem,
  },
};

📌 Examples

<Tabs>
  <TabItem name="Foo">
    <div class="first-tab">First tab</div>
  </TabItem>
  <TabItem name="Bar">
    <div class="second-tab">Second tab</div>
  </TabItem>
</Tabs>

You can customize the name in the nav by slot #name (This removes the use of the prop name)

<Tabs>
  <TabItem>
    <template #name>
        My custom title 🍉
    </template>

    <div class="first-tab">
    First tab
    </div>
  </TabItem>
</Tabs>

🏞 Themes

There are some themes available to customize your tab, you can apply them through the "theme" prop.

The default theme is, guess what, default, curious isn't it?!
  • default
  • purple
  • red
  • pink
  • cyan
  • green

Example

<Tabs theme="cyan" >
  ....
</Tabs>

You can create your own personalized themes, passing an object with the properties through the "theme" prop.

Example

<Tabs :theme="theme" >
  ....
</Tabs>
....
<script>
  export default {
    data: () => ({
      theme: {
        nav: "#4A148C",
        navItem: "#BDBDBD",
        navActiveItem: "#fff",
        slider: "#CE93D8",
        arrow: "#f3f3f3",
      },
    }),
  };
</script>

Tabs

Props

| Name | type | Default | description | | ------------- | ---------------- | --------- | ------------------------------------------------- | | value | String | '' | The designated model value for the component. | | theme | String - Object | 'default' | Apply a custom theme | | vertical | Boolean | false | Uses a vertical transition when changing windows. | | ripple | Boolean | true | Enalbe/disable ripple buttons effects. | | slideDuration | String - Number | 200 | Set time in ms slide duration. | | slideVertical | Boolean | false | Enable vertical slide animation. | | slide | Boolean - Object | false | Enable/disable slide or set object with props. | | navAuto | Boolean | false | Set nav auto items. | | navSlider | Boolean | true | Enable/disable slider under nav item. |

Slots

| Name | Description | Props | | ---- | ----------------------------- | ----------------------------------- | | nav | Slot to replace the nav menu. | { navItems: Array, active: String } |

Events

| Name | Description | | ------ | ------------------------------------------------ | | input | Emitted when tab is changed. | | change | Emitted when tab is changed by user interaction. |

TabItem

Props

| Name | type | Default | description | | -------- | ------- | ----------- | ----------------------------------------------------- | | name | String | 'Tab Item ' | Sets the tab value in the nav menu. | | disabled | Boolean | false | Removes the ability to click or target the component. |

Slots

| Name | Description | | ---- | -------------------------- | | name | Slot for cutom name in nav |

🔖 License

MIT