Giter Site home page Giter Site logo

mode-x / vue-navs Goto Github PK

View Code? Open in Web Editor NEW
0.0 1.0 0.0 3.74 MB

A composite navigation component for Vue apps.

JavaScript 2.51% HTML 8.70% Vue 29.87% CSS 58.91%
vue-navs vue nav-bar nav-menu side-navigation side-bar bulma navigation-drawer navigation-component

vue-navs's Introduction

Vue Navs

Vue Navs is a composite navigation component for Vue apps. The component makes it easy to integrate Side-Nav and Nav-Bar into a Vue project. Currently, the component is designed to work with Bulma CSS framework and uses Hamburgers for menu button styles.

Installation

npm install vue-navs
or
yarn add vue-navs

Dependencies

  • Bulma
  • Hamburgers
  • Vue Router
Run npm install bulma hamburgers vue-router
or
yarn add bulma hamburgers vue-router

Integration

  1. After installation
  2. Add the following to main.js
import VueNavs from "vue-navs"

import "@/assets/css/bulma.scss";

Vue.component("vue-navs", VueNavs)
  1. Create a file assets/css/bulma.scss and add these statements to it:
$hamburger-layer-width: 30px;
@import "~vue-navs/dist/VueNavs.css";
@import "~bulma/css/bulma.css";
@import "~hamburgers/_sass/hamburgers/hamburgers.scss";
  1. In the parent component, your declaration should look like this:
<vue-navs
  :site-name="name"
  :user="user"
  :side-bar-type="side_bar_type"
  :side-bar-items="side_bar_items"
  :nav-bar-items="nav_bar_items"
  :hamburger-type="hamburger_type"
/>
  1. Finally,
Add this to your index.html

<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.10.1/css/all.css" />

The component currently, supports only fontawesome icons. Other icon libraries will be added soon.

Props - default composition

  • site-name is String.
  • user is an Object.
  • side-bar-type is String specifying the type. It is either "above" or "below".
  • side-bar-items is an Array.
  • nav-bar-items is an Object.
  • hamburger-type is a String (hamburger--spin is the default style. Visit https://jonsuh.com/hamburgers/ for more styles).

Below is the default composition of the props property of the component:

<script>
  export default {
    name: "app",
    data() {
      return {
        hamburger_type: "hamburger--spin",
        name: "VUE NAVS",
        user: {
          email: "[email protected]",
          role: "admin",
          avatar: "https://bulma.io/images/placeholders/128x128.png"
        },
        side_bar_type: "above",
        side_bar_items: [
          {
            name: "Dashboard",
            icon: "fas fa-tv",
            route: "/dashboard"
          },
          {
            name: "Billing",
            icon: "fas fa-dollar-sign",
            route: "/billing"
          },
          {
            name: "Users",
            icon: "fas fa-users",
            route: "/",
            sub_menus: [
              { name: "Users", route: "/users" },
              { name: "Administrators", route: "/admin" }
            ]
          },
          {
            name: "Preferences",
            icon: "fas fa-cog",
            route: "/",
            sub_menus: [{ name: "Settings", route: "/settings" }]
          }
        ],
        nav_bar_items: [
          { name: "Profile", icon: "fas fa-user", route: "/profile" },
          { name: "Setting", icon: "fas fa-cog", route: "/setting" },
          {
            name: "Logout",
            icon: "fas fa-sign-out-alt",
            route: "/home",
            action: () => {
              this.logOut();
            }
          }
        ]
      };
    },
    methods: {
      logOut() {
        Define custom actions here.
        For instance you can redirect to a login page:
        this.$router.replace("/login")
      }
    }
  }
</script>

Licence

Copyright 2019 Pidasys

Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.

THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

vue-navs's People

Contributors

mode-x avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.