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-use

v0.2.0

Published

> use Vue.use usefully

Downloads

3,023

Readme

vue-use

use Vue.use usefully

Install

npm install vue-use

Usage

basic usage

import Vue from 'vue'
import use from 'vue-use'

use(Vue, {
  filters: {
    filterA,
    filterB
    // vue filters
  }
  // more vue-use options see below
})
import Vue from 'vue'
import {useConfig, useFilters, useComponents, useDirectives, useNextTick} from 'vue-use'
useFilters(Vue, {
  filterA,
  filterB
  // vue filters
})

Vue Filters

See above..

Vue.Filters https://vuejs.org/v2/guide/filters.html

Vue Components

use(Vue, {
  components: {
    // components
  }
})
useComponents(Vue, {
  // components
})

Vue.Components https://vuejs.org/v2/guide/components.html

Vue Directives

use(Vue, {
  directives: {
    // directives
  }
})
useDirectives(Vue, {
  // directives
})

Vue.Directives https://vuejs.org/v2/api/#Vue-directive

Vue-use Global Config

Vue Global Config https://vuejs.org/v2/api/#Global-Config

use(Vue, {
  config: {
    // below all default value of Vue Global Config
    silent: false,
    optionMergeStrategies: {},
    devtools: process.env.NODE_ENV !== 'production', // Boolean
    errorHandler: undefined, // function (err, vm, info) // 2.2.0+
    warnHandler: undefined, // function (msg, vm, trace) // 2.4.0+
    ignoredElements: [], // 2.5.0+
    keyCodes: {},
    performance: false, // 2.2.0+
    productionTip: false // 2.2.0+
  }
})

Vue-use.use

equal to Vue.use..

Vue.use https://vuejs.org/v2/api/#Vue-use

import Vuex from 'vuex'
import VueToasted from 'vue-toasted'
use(Vue, {
  use: [
    Vuex,
    [VueToasted, {duration: 3000}]
  ]
})

Vue-use.nextTick

use(Vue, {
  nextTick: function () {}
})

Vue.nextTick https://vuejs.org/v2/api/#Vue-nextTick

0.1.8 return

Now, vue-use will return store and router if you used Vuex or Vue-router

const {store, router} = use(Vue, {
  VueRouter: {
    VueRouter,
     routes: {modules, strict: process.env.NODE_ENV !== 'production', plugins},
  },
  Vuex: {
    Vuex,
    Store: 
  }
  router
})

new Vue({
  store,
  router
  ...
})

0.1.8 vue-use.use updated

Now, use can be function

use(Vue, {
  Vuex: {
    Vuex
    Store: {...}
  },
  use: function ({store, router}) {
    return [
      APlugin,
      [BPlugin, router]
    ]
  }
})

What Special

if you use vuex and vue-router in vue-use,

use(Vue, {
  VueRouter: {
    VueRouter,
    beforeEach: function (to, from, next, store /* you can get $store here */) {
      // $store
      store.commit('something')
    }
  }
})