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

sort-type-list

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

sort-type-list

A sort-type-list component by vue.

latest
npmnpm
Version
1.0.1
Version published
Maintainers
1
Created
Source

sort-type-list

A sort-type-list component by vue.

Install

# install
npm install --save sort-type-list

预览

预览

##use

<template>
  <div id="app">
    <sort-type-list :sortData="sortList" @SortType="SortType"></sort-type-list>
    <span>{{selectType}}</span>
  </div>
</template>

<script>
import sortTypeList from './myPlugin/sortTypeList'; // 引入
import {sortlist} from './data'; // 引入
export default {
  name: 'app',
  components: {
    sortTypeList
  },
  data () {
    return {
      sortList: sortlist,
      selectType: ""
    }
  },
  methods: {
    SortType(value) {
      this.selectType = value
    }
  }
}
</script>

Keywords

vue

FAQs

Package last updated on 17 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