New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

left-tab-menu

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

left-tab-menu

Left tab menu component by Vue.

latest
npmnpm
Version
1.0.1
Version published
Maintainers
1
Created
Source

left-tab-menu

Left tab menu component by Vue. Must specify the height of the outer container where the component is located.

Install

# install
npm install --save left-tab-menu

预览

预览

##use

<template>
  <div id="app">
    <left-tab-menu :menuList="menulist"></left-tab-menu>
  </div>
</template>

<script>
import leftTabMenu from './myPlugin/leftTabMenu'; // 引入
import menuList from './menuList'; // 引入
export default {
  name: 'app',
  components: {
    leftTabMenu
  },
  data () {
    return {
      menulist: menuList
    }
  }
}
</script>

<style lang="scss">
#app {
  font-family: 'Avenir', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  color: #2c3e50;
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 0;
  left: 0;
  height: 100%;
}
</style>


Keywords

vue

FAQs

Package last updated on 14 Dec 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts